nspr: Bump to 4.10.2

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy
2013-11-18 15:23:30 -05:00
parent c41cf22b62
commit b09f8110db
2 changed files with 7 additions and 2 deletions

View File

@@ -1,13 +1,13 @@
{ stdenv, fetchurl }:
let version = "4.10.1"; in
let version = "4.10.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 = "bd1cdf5e7e107846ffe431c5c62b81a560e8c3f7";
sha1 = "650e4aa35d58624bc1083ed585c81c4af09cf23c";
};
preConfigure = "cd nspr";