summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorJosselin Poiret <dev@jpoiret.xyz>2024-05-16 11:41:59 +0200
committerLudovic Courtès <ludo@gnu.org>2024-08-31 10:45:03 +0200
commit49c35eec114c20500d0d5eb6cc2e121f3bbd18eb (patch)
treeca4622f8a609f52aa78544a3ab331887e20fa5a0 /gnu
parent2f8fb69a55fa9a5bff008d901c36eea8a8294730 (diff)
gnu: nss-certs: Ungraft update to 3.99.
* gnu/packages/certs.scm (nss-certs): Update to 3.99. (nss-certs-3.99): Remove variable. Change-Id: Ie44b6c6d0753abf4db9005b4c0ee48bc6168caa7
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/certs.scm22
1 files changed, 3 insertions, 19 deletions
diff --git a/gnu/packages/certs.scm b/gnu/packages/certs.scm
index 00c6a93b925..449be0b35ab 100644
--- a/gnu/packages/certs.scm
+++ b/gnu/packages/certs.scm
@@ -128,10 +128,10 @@ that was originally contributed to Debian.")
128(define-public nss-certs 128(define-public nss-certs
129 (package 129 (package
130 (name "nss-certs") 130 (name "nss-certs")
131 ;; XXX We used to refer to the nss package here, but that eventually caused 131 ;; FIXME We used to refer to the nss package here, but that eventually caused
132 ;; module cycles. The below is a quick copy-paste job that must be kept in 132 ;; module cycles. The below is a quick copy-paste job that must be kept in
133 ;; sync manually. Surely there's a better way…? 133 ;; sync manually. Surely there's a better way…?
134 (version "3.88.1") 134 (version "3.99")
135 (source (origin 135 (source (origin
136 (method url-fetch) 136 (method url-fetch)
137 (uri (let ((version-with-underscores 137 (uri (let ((version-with-underscores
@@ -142,7 +142,7 @@ that was originally contributed to Debian.")
142 "nss-" version ".tar.gz"))) 142 "nss-" version ".tar.gz")))
143 (sha256 143 (sha256
144 (base32 144 (base32
145 "15il9fsmixa1r4446zq1wl627sg0hz9h67w6kjxz273xz3nl7li7")) 145 "1g89ig40gfi1sp02gybvl2z818lawcnrqjzsws36cdva834c5maw"))
146 ;; Create nss.pc and nss-config. 146 ;; Create nss.pc and nss-config.
147 (patches (search-patches "nss-3.56-pkgconfig.patch" 147 (patches (search-patches "nss-3.56-pkgconfig.patch"
148 "nss-getcwd-nonnull.patch" 148 "nss-getcwd-nonnull.patch"
@@ -188,22 +188,6 @@ taken from the NSS package and thus ultimately from the Mozilla project.")
188 (home-page "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS") 188 (home-page "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS")
189 (license license:mpl2.0))) 189 (license license:mpl2.0)))
190 190
191(define-public nss-certs-3.99
192 (package
193 (inherit nss-certs)
194 (version "3.99")
195 (source (origin
196 (method url-fetch)
197 (uri (let ((version-with-underscores
198 (string-join (string-split version #\.) "_")))
199 (string-append
200 "https://ftp.mozilla.org/pub/mozilla.org/security/nss/"
201 "releases/NSS_" version-with-underscores "_RTM/src/"
202 "nss-" version ".tar.gz")))
203 (sha256
204 (base32
205 "1g89ig40gfi1sp02gybvl2z818lawcnrqjzsws36cdva834c5maw"))))))
206
207(define-public le-certs 191(define-public le-certs
208 (package 192 (package
209 (name "le-certs") 193 (name "le-certs")