* Firefox 5.0.

* nspr updated to 4.8.8.

svn path=/nixpkgs/trunk/; revision=27516
This commit is contained in:
Eelco Dolstra
2011-06-22 12:21:15 +00:00
parent 0f1bf98034
commit 611aecaeeb
2 changed files with 6 additions and 8 deletions

View File

@@ -1,13 +1,13 @@
{ stdenv, fetchurl }:
let version = "4.8.7"; in
let version = "4.8.8"; 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 = "eb9459c31d43d1000fb1304f1e0cedab0bdac3c54c71988259c1ac10c1fe16a3";
sha256 = "1jfl97hbb88lpyvhcv6q8zrqyw9wri2m838qdhwkwcgfsbgg9wwj";
};
preConfigure = "cd mozilla/nsprpub";