diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-10-20 23:31:41 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-11 12:18:21 -0500 |
commit | 8f78f61c029bb45c39fa782f8ac2c6962e44cdab (patch) | |
tree | 2932aea668f9b45d599ba10e581f519487a1edd0 /gnu/packages/certs.scm | |
parent | b8324050ada78a6da96717aee972ceddaa77e528 (diff) | |
download | guix-8f78f61c029bb45c39fa782f8ac2c6962e44cdab.tar.gz |
gnu: nss: Update to 3.71.
This is made in an attempt to get rid of non-deterministic test failures, namely: [ FAILED ] TlsConnectDatagram13.AeadLimit * gnu/packages/nss.scm (nss): Update comment about nss-certs. Update to 3.71. [phases]{check}: Update faketime date. [inputs]{sqlite}: Use the regular version. * gnu/packages/certs.scm (nss-certs): Inherit version and source from nss.
Diffstat (limited to 'gnu/packages/certs.scm')
-rw-r--r-- | gnu/packages/certs.scm | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/gnu/packages/certs.scm b/gnu/packages/certs.scm index 39c3ebd128..f5ab726e0b 100644 --- a/gnu/packages/certs.scm +++ b/gnu/packages/certs.scm @@ -128,18 +128,8 @@ that was originally contributed to Debian.") (define-public nss-certs (package (name "nss-certs") - (version "3.67") - (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 - "0zyfi27lbdz1bmk9dmsivcya4phx25rzlxqcnjab69yd928rlm7n")))) + (version (package-version nss)) + (source (package-source nss)) (build-system gnu-build-system) (outputs '("out")) (native-inputs |