gnu: Add ghc-crypto-cipher-types.
* gnu/packages/haskell-crypto.scm (ghc-crypto-cipher-types): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
54f3536d55
commit
aab6df5b63
1 changed files with 22 additions and 0 deletions
|
@ -530,3 +530,25 @@ (define-public ghc-x509-system
|
|||
"This package provides a library to handle system accessors and storage
|
||||
for X.509 certificates.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-crypto-cipher-types
|
||||
(package
|
||||
(name "ghc-crypto-cipher-types")
|
||||
(version "0.0.9")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://hackage.haskell.org/package/"
|
||||
"crypto-cipher-types-" version "/"
|
||||
"crypto-cipher-types-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"03qa1i1kj07pfrxsi7fiaqnnd0vi94jd4jfswbmnm4gp1nvzcwr0"))))
|
||||
(build-system haskell-build-system)
|
||||
(inputs `(("ghc-byteable" ,ghc-byteable)
|
||||
("ghc-securemem" ,ghc-securemem)))
|
||||
(home-page "https://github.com/vincenthz/hs-crypto-cipher")
|
||||
(synopsis "Generic cryptography cipher types for Haskell")
|
||||
(description "This Haskell package provides basic typeclasses and types
|
||||
for symmetric ciphers.")
|
||||
(license license:bsd-3)))
|
||||
|
|
Loading…
Reference in a new issue