aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/nettle
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-05-17 23:40:37 +0200
committerLluís Batlle i Rossell <viric@viric.name>2013-05-17 23:40:37 +0200
commit6c961181c2eafd761dd439db0339159016e7f039 (patch)
tree6257cd61f3208d9545c2c4357e44067333dcd511 /pkgs/development/libraries/nettle
parentc1708440bd92ad2a3142fe709b853234c65de60f (diff)
Revert "gnutls: update to 3.2.0"
Hydra found that the i686 tests fail. I'll work on this later. http://hydra.nixos.org/build/4980459 This reverts commit c1708440bd92ad2a3142fe709b853234c65de60f.
Diffstat (limited to 'pkgs/development/libraries/nettle')
-rw-r--r--pkgs/development/libraries/nettle/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/libraries/nettle/default.nix b/pkgs/development/libraries/nettle/default.nix
index ec46fd69c7a1..2e444c321773 100644
--- a/pkgs/development/libraries/nettle/default.nix
+++ b/pkgs/development/libraries/nettle/default.nix
@@ -1,11 +1,11 @@
{ fetchurl, stdenv, gmp, gnum4 }:
stdenv.mkDerivation (rec {
- name = "nettle-2.7";
+ name = "nettle-2.5";
src = fetchurl {
url = "mirror://gnu/nettle/${name}.tar.gz";
- sha256 = "1mnl5i1136p47lrklm0mhnnv3gjakza385zvxz12qf057h9ym562";
+ sha256 = "0wicr7amx01l03rm0pzgr1qvw3f9blaw17vjsy1301dh13ll58aa";
};
buildInputs = [ gnum4 ];
@@ -15,8 +15,6 @@ stdenv.mkDerivation (rec {
enableParallelBuilding = true;
- dontDisableStatic = true;
-
patches = stdenv.lib.optional (stdenv.system == "i686-cygwin")
./cygwin.patch;