summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2018-12-17 00:19:11 +0100
committerGitHub <noreply@github.com>2018-12-17 00:19:11 +0100
commita94a32105703501d7747e850b8e7c4d6af0e5df0 (patch)
treee8f3bb2c7116039c5a664381fe2d48f48fa9b12a
parent5dac5e1f9906cd241efd20a277b2ff80de84e87e (diff)
parentfdc6caf14497fab306b09c794adce6582c128d21 (diff)
downloadnixpkgs-a94a32105703501d7747e850b8e7c4d6af0e5df0.tar
nixpkgs-a94a32105703501d7747e850b8e7c4d6af0e5df0.tar.gz
nixpkgs-a94a32105703501d7747e850b8e7c4d6af0e5df0.tar.bz2
nixpkgs-a94a32105703501d7747e850b8e7c4d6af0e5df0.tar.lz
nixpkgs-a94a32105703501d7747e850b8e7c4d6af0e5df0.tar.xz
nixpkgs-a94a32105703501d7747e850b8e7c4d6af0e5df0.tar.zst
nixpkgs-a94a32105703501d7747e850b8e7c4d6af0e5df0.zip
Merge pull request #52378 from alyssais/nss
nss: 3.40.1 -> 3.41
-rw-r--r--pkgs/development/libraries/nss/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix
index 4d48ae0b12b..f8b993d202a 100644
--- a/pkgs/development/libraries/nss/default.nix
+++ b/pkgs/development/libraries/nss/default.nix
@@ -5,7 +5,7 @@ let
     url = http://dev.gentoo.org/~polynomial-c/mozilla/nss-3.15.4-pem-support-20140109.patch.xz;
     sha256 = "10ibz6y0hknac15zr6dw4gv9nb5r5z9ym6gq18j3xqx7v7n3vpdw";
   };
-  version = "3.40.1";
+  version = "3.41";
   underscoreVersion = builtins.replaceStrings ["."] ["_"] version;
 
 in stdenv.mkDerivation rec {
@@ -14,7 +14,7 @@ in stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "mirror://mozilla/security/nss/releases/NSS_${underscoreVersion}_RTM/src/${name}.tar.gz";
-    sha256 = "1wf8qapd2lh8pbjd6pp9m32mx1zyddrmv5c4cr86xj3r5ap6n3jy";
+    sha256 = "0bbif42fzz5gk451sv3yphdrl7m4p6zgk5jk0307j06xs3sihbmb";
   };
 
   buildInputs = [ perl zlib sqlite ]