3
0
Fork 0
forked from mirrors/nixpkgs

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

@ -22,6 +22,11 @@
rm -f "$out/bin/$prg"
makeWrapper "${python}/bin/$prg" "$out/bin/$prg" --set PYTHONHOME "$out"
done
if [ -f ${python}/nix-support/setup-hook ]; then
mkdir -p $out/nix-support/
ln -sv ${python}/nix-support/setup-hook $out/nix-support
fi
'' + postBuild;
}) // {
inherit python;

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";