nspr: Update to 4.9.2

This commit is contained in:
Eelco Dolstra 2012-09-11 13:44:18 -04:00
parent 52bdfef521
commit 4db2f403ba

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl }:
let version = "4.9.1"; in
let version = "4.9.2"; 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";
sha1 = "1d52282668f2f8f5aabf7a5a3e7f6ba9a5df9710";
sha1 = "455eab365f8fd732a4b014ca0af685f3c2dec598";
};
preConfigure = "cd mozilla/nsprpub";
@ -20,7 +20,7 @@ stdenv.mkDerivation {
'';
enableParallelBuilding = true;
meta = {
homepage = http://www.mozilla.org/projects/nspr/;
description = "Netscape Portable Runtime, a platform-neutral API for system-level and libc-like functions";