gnu: Add ghc-x509-store.
* gnu/packages/haskell.scm (ghc-x509-store): New variable.
This commit is contained in:
parent
e24e053eda
commit
282f11420b
1 changed files with 27 additions and 0 deletions
|
@ -5962,6 +5962,33 @@ (define-public ghc-x509
|
||||||
"This library provides functions to read and write X509 certificates.")
|
"This library provides functions to read and write X509 certificates.")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-x509-store
|
||||||
|
(package
|
||||||
|
(name "ghc-x509-store")
|
||||||
|
(version "1.6.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://hackage.haskell.org/package/"
|
||||||
|
"x509-store/x509-store-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"01abx528i9f7djq2772xyna8x2mykrnwqkcfrapcx7z3bhprvml3"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ghc-mtl" ,ghc-mtl)
|
||||||
|
("ghc-pem" ,ghc-pem)
|
||||||
|
("ghc-asn1-types" ,ghc-asn1-types)
|
||||||
|
("ghc-asn1-encoding" ,ghc-asn1-encoding)
|
||||||
|
("ghc-cryptonite" ,ghc-cryptonite)
|
||||||
|
("ghc-x509" ,ghc-x509)))
|
||||||
|
(home-page "http://github.com/vincenthz/hs-certificate")
|
||||||
|
(synopsis "X.509 collection accessing and storing methods")
|
||||||
|
(description
|
||||||
|
"This package provides functions for accessing and storing X.509
|
||||||
|
collections, certificates, revocation lists, and exception lists.")
|
||||||
|
(license bsd-3)))
|
||||||
|
|
||||||
(define-public idris
|
(define-public idris
|
||||||
(package
|
(package
|
||||||
(name "idris")
|
(name "idris")
|
||||||
|
|
Loading…
Reference in a new issue