mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
nettle: update to 2.5.
This commit is contained in:
parent
47d3d58ec6
commit
1189d3fb2a
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user