me
/
guix
Archived
1
0
Fork 0

gnu: Add nss-next.

* gnu/packages/nss.scm (nss-next): New variable.
Maxim Cournoyer 2022-10-12 13:14:13 +00:00
parent 7df2b610fc
commit cc9633ad07
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 17 additions and 0 deletions

View File

@ -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
security standards.")
(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