mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add ghc-crypton-x509.
* gnu/packages/haskell-crypto.scm (ghc-crypton-x509): New variable. Change-Id: I0bea5088c2fd23b77f22a2017303bac849c45c29
This commit is contained in:
parent
9f5cc3f8f4
commit
f0514b9cac
1 changed files with 31 additions and 0 deletions
|
@ -648,6 +648,37 @@ abstraction for CPRNGs.")
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-crypton-x509
|
||||||
|
(package
|
||||||
|
(name "ghc-crypton-x509")
|
||||||
|
(version "1.7.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (hackage-uri "crypton-x509" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1zyaz0krf08g36g30zr5wn8f2x51l4dj2zcjnhpiw9h05p54mdzb"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(properties '((upstream-name . "crypton-x509")))
|
||||||
|
(inputs (list ghc-memory
|
||||||
|
ghc-hourglass
|
||||||
|
ghc-pem
|
||||||
|
ghc-asn1-types
|
||||||
|
ghc-asn1-encoding
|
||||||
|
ghc-asn1-parse
|
||||||
|
ghc-crypton))
|
||||||
|
(native-inputs (list ghc-tasty ghc-tasty-quickcheck ghc-x509))
|
||||||
|
(arguments
|
||||||
|
`(#:cabal-revision ("1"
|
||||||
|
"10a2x47znhbayyfr6fqgq27623akpycyjbfxz4hnavavf1x6ary5")
|
||||||
|
;; build phase fails when tests are activated.
|
||||||
|
;; See https://github.com/kazu-yamamoto/crypton-certificate/pull/7
|
||||||
|
#:tests? #f))
|
||||||
|
(home-page "https://github.com/kazu-yamamoto/crypton-certificate")
|
||||||
|
(synopsis "X509 reader and writer")
|
||||||
|
(description "This package provides generic X509 support for Haskell.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-cprng-aes
|
(define-public ghc-cprng-aes
|
||||||
(package
|
(package
|
||||||
(name "ghc-cprng-aes")
|
(name "ghc-cprng-aes")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue