a0159dee8e
URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
19 lines
474 B
Nix
19 lines
474 B
Nix
{stdenv, fetchurl, perl, zip}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "nss-3.10";
|
|
builder = ./builder.sh;
|
|
|
|
nsssrc = fetchurl {
|
|
url = ftp://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_10_RTM/src/nss-3.10.tar.gz;
|
|
md5 = "f0d75d52aff21f88d9c055bdb78f54f8";
|
|
};
|
|
|
|
nsprsrc = fetchurl {
|
|
url = ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v4.6/src/nspr-4.6.tar.gz;
|
|
md5 = "a37c3cde875502e05576429312452465";
|
|
};
|
|
|
|
buildInputs = [perl zip];
|
|
}
|