3
0
Fork 0
forked from mirrors/nixpkgs

nss: Update NSS to version 3.13.6.

So to begin with fixing NSS let's get to the latest upstream release and start
fixing, so we won't carry around historic crap we then will throw away anyway.
This commit is contained in:
aszlig 2012-08-20 05:41:58 +02:00
parent d7fc07705a
commit 0e768ba98d

View file

@ -9,12 +9,16 @@ let
in
stdenv.mkDerivation {
name = "nss-3.13.3";
stdenv.mkDerivation rec {
name = "nss-${version}";
version = "3.13.6";
src = fetchurl {
url = http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_13_3_RTM/src/nss-3.13.3.tar.gz;
sha256 = "efa10f2c70da4bddabf1a6081964969bb23359b93d6eadbf4739274a77bc3587";
src = let
uscoreVersion = stdenv.lib.replaceChars ["."] ["_"] version;
releasePath = "releases/NSS_${uscoreVersion}_RTM/src/nss-${version}.tar.gz";
in fetchurl {
url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/${releasePath}";
sha256 = "f7e90727e0ecc1c29de10da39a79bc9c53b814ccfbf40720e053b29c683d43a0";
};
buildInputs = [nspr perl zlib];