nettle: update to 2.5.

This commit is contained in:
Ludovic Courtès 2012-10-19 13:48:09 +02:00
parent 47d3d58ec6
commit 1189d3fb2a

View file

@ -1,12 +1,11 @@
{ fetchurl, stdenv, gmp, gnum4 }:
stdenv.mkDerivation (rec {
name = "nettle-2.4";
name = "nettle-2.5";
src = fetchurl {
# Eventually use `mirror://gnu/'.
url = "ftp://ftp.lysator.liu.se/pub/security/lsh/${name}.tar.gz";
sha256 = "0gwwcipmjxkv7p2p01m19n4c3jiczg682w58l5dgg0b8vw494056";
url = "mirror://gnu/nettle/${name}.tar.gz";
sha256 = "0wicr7amx01l03rm0pzgr1qvw3f9blaw17vjsy1301dh13ll58aa";
};
buildInputs = [ gnum4 ];
@ -14,6 +13,8 @@ stdenv.mkDerivation (rec {
doCheck = (stdenv.system != "i686-cygwin");
enableParallelBuilding = true;
patches = stdenv.lib.optional (stdenv.system == "i686-cygwin")
./cygwin.patch;