gnu: Add nss-next.
* gnu/packages/nss.scm (nss-next): New variable.
parent
7df2b610fc
commit
cc9633ad07
|
@ -242,3 +242,20 @@ applications. Applications built with NSS can support SSL v2 and v3, TLS,
|
||||||
PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other
|
PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other
|
||||||
security standards.")
|
security standards.")
|
||||||
(license license:mpl2.0)))
|
(license license:mpl2.0)))
|
||||||
|
|
||||||
|
(define-public nss-next
|
||||||
|
(package
|
||||||
|
(inherit nss)
|
||||||
|
(version "3.83")
|
||||||
|
(source (origin
|
||||||
|
(inherit (package-source nss))
|
||||||
|
(uri (let ((version-with-underscores
|
||||||
|
(string-join (string-split version #\.) "_")))
|
||||||
|
(string-append
|
||||||
|
"https://ftp.mozilla.org/pub/mozilla.org/security/nss/"
|
||||||
|
"releases/NSS_" version-with-underscores "_RTM/src/"
|
||||||
|
"nss-" version ".tar.gz")))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0a01xwfrr334mibj1agbykjkc72ph906f2n8ff5hn2b4z5kyl8xb"))))
|
||||||
|
(propagated-inputs (list nspr-next)))) ;required by nss.pc
|
||||||
|
|
Reference in New Issue