3
0
Fork 0
forked from mirrors/nixpkgs

Update NSPR

svn path=/nixpkgs/trunk/; revision=26416
This commit is contained in:
Michael Raskin 2011-03-18 08:26:11 +00:00
parent ac108080c2
commit 6879f1e3b1

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl }:
let version = "4.8.6"; in
let version = "4.8.7"; in
stdenv.mkDerivation {
name = "nspr-${version}";
src = fetchurl {
url = "http://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${version}/src/nspr-${version}.tar.gz";
sha256 = "0vcz39784bw42kv9f81dnfb9ciga66l4yg223j467yin2nq0n16r";
sha256 = "eb9459c31d43d1000fb1304f1e0cedab0bdac3c54c71988259c1ac10c1fe16a3";
};
preConfigure = "cd mozilla/nsprpub";