mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add nss-certs-3.98.
* gnu/packages/certs.scm (nss-certs-3.98): New variable. Change-Id: I95b54781c7b85f1d6b54158c6b906116791e009c Signed-off-by: Andrew Tropin <andrew@trop.in>
This commit is contained in:
parent
0824fa0d69
commit
0920693381
1 changed files with 16 additions and 0 deletions
|
@ -188,6 +188,22 @@ (define-public nss-certs
|
||||||
(home-page "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS")
|
(home-page "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS")
|
||||||
(license license:mpl2.0)))
|
(license license:mpl2.0)))
|
||||||
|
|
||||||
|
(define-public nss-certs-3.98
|
||||||
|
(package
|
||||||
|
(inherit nss-certs)
|
||||||
|
(version "3.98")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(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
|
||||||
|
"1kh98amfklrq6915n4mlbrcqghc3srm7rkzs9dkh21jwscrwqjgm"))))))
|
||||||
|
|
||||||
(define-public le-certs
|
(define-public le-certs
|
||||||
(package
|
(package
|
||||||
(name "le-certs")
|
(name "le-certs")
|
||||||
|
|
Loading…
Reference in a new issue