[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#30892] [PATCH 08/37] gnu: Add ghc-securemem.
From: |
rsiddharth |
Subject: |
[bug#30892] [PATCH 08/37] gnu: Add ghc-securemem. |
Date: |
Wed, 21 Mar 2018 03:44:46 +0000 |
* gnu/packages/haskell.scm (ghc-securemem): New variable.
---
gnu/packages/haskell.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 21e6c2021..dab0935bf 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -9140,4 +9140,27 @@ be used inline with a quasi-quoter or in an external
file and it
interpolates variables according to the type being inserted.")
(license license:expat)))
+(define-public ghc-securemem
+ (package
+ (name "ghc-securemem")
+ (version "0.1.9")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://hackage.haskell.org/package/"
+ "securemem-" version "/"
+ "securemem-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0dkhhjxa7njc3qbgvd5a23rkvr39vj2kn2a9nk6yjg7a8b2hvdpy"))))
+ (build-system haskell-build-system)
+ (inputs `(("ghc-byteable" ,ghc-byteable)
+ ("ghc-memory" ,ghc-memory)))
+ (home-page "https://github.com/vincenthz/hs-securemem")
+ (synopsis "Auto-scrubbing and const-time-eq memory chunk abstraction for
+Haskell")
+ (description "SecureMem is similar to ByteString, except that it provides
+a memory chunk that will be auto-scrubbed after it run out of scope.")
+ (license license:bsd-3)))
+
;;; haskell.scm ends here
--
2.16.2
- [bug#30892] [PATCH 00/37] Add ghc-yesod and its dependencies., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 01/37] gnu: ghc-chunked-data: Update inputs., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 12/37] gnu: Add ghc-crypto-random., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 14/37] gnu: Add ghc-clientsession., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 13/37] gnu: Add ghc-cprng-aes., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 02/37] gnu: Add ghc-stm-chans., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 03/37] gnu: Add ghc-monad-loops., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 10/37] gnu: Add ghc-crypto-cipher-tests., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 06/37] gnu: Add ghc-path-pieces., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 04/37] gnu: Add ghc-monad-logger., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 08/37] gnu: Add ghc-securemem.,
rsiddharth <=
- [bug#30892] [PATCH 05/37] gnu: Add ghc-shakespeare., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 11/37] gnu: Add ghc-cipher-aes., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 07/37] gnu: Add ghc-skein., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 09/37] gnu: Add ghc-crypto-cipher-types., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 15/37] gnu: Add ghc-yesod-core., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 16/37] gnu: Add ghc-resource-pool., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 18/37] gnu: Add ghc-th-lift-instances., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 22/37] gnu: Add ghc-http-api-data., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 24/37] gnu: Add ghc-aeson-compat., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 20/37] gnu: Add ghc-uri-bytestring., rsiddharth, 2018/03/20