summary refs log tree commit diff
path: root/pkgs/development/libraries/nss
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-11-18 15:39:13 -0500
committerShea Levy <shea@shealevy.com>2013-11-18 15:39:13 -0500
commit2909634cacd987550c626176c0ef4684a0f0f93a (patch)
tree1a1bea39222ba59e324279cdf0d2d9febc3b6f44 /pkgs/development/libraries/nss
parentb09f8110dbcb8bc8a1fcdb3e9a5dddb0956aba96 (diff)
downloadnixpkgs-2909634cacd987550c626176c0ef4684a0f0f93a.tar
nixpkgs-2909634cacd987550c626176c0ef4684a0f0f93a.tar.gz
nixpkgs-2909634cacd987550c626176c0ef4684a0f0f93a.tar.bz2
nixpkgs-2909634cacd987550c626176c0ef4684a0f0f93a.tar.lz
nixpkgs-2909634cacd987550c626176c0ef4684a0f0f93a.tar.xz
nixpkgs-2909634cacd987550c626176c0ef4684a0f0f93a.tar.zst
nixpkgs-2909634cacd987550c626176c0ef4684a0f0f93a.zip
nss: Bump
Signed-off-by: Shea Levy <shea@shealevy.com>
Diffstat (limited to 'pkgs/development/libraries/nss')
-rw-r--r--pkgs/development/libraries/nss/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix
index 49f3754bc14..bc361b39dd6 100644
--- a/pkgs/development/libraries/nss/default.nix
+++ b/pkgs/development/libraries/nss/default.nix
@@ -11,17 +11,17 @@ let
 
   secLoadPatch = fetchurl {
     name = "security_load.patch";
-    urls = http://patch-tracker.debian.org/patch/series/dl/nss/2:3.15.1-1/85_security_load.patch;
+    urls = http://patch-tracker.debian.org/patch/series/dl/nss/2:3.15.3-1/85_security_load.patch;
     sha256 = "041c6v4cxwsy14qr5m9qs0gkv3w24g632cwpz27kacxpa886r1ds";
   };
 
 in stdenv.mkDerivation rec {
   name = "nss-${version}";
-  version = "3.15.2";
+  version = "3.15.3";
 
   src = fetchurl {
-    url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_15_2_RTM/src/${name}.tar.gz";
-    sha1 = "2d900c296bf11deabbf833ebd6ecdea549c97a5f";
+    url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_15_3_RTM/src/${name}.tar.gz";
+    sha1 = "1d0f6707eda35f6c7be92fe2b0537dc090a8f203";
   };
 
   buildInputs = [ nspr perl zlib sqlite ];