summary refs log tree commit diff
path: root/pkgs/development/libraries/gnutls/default.nix
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/gnutls/default.nix
parentc1708440bd92ad2a3142fe709b853234c65de60f (diff)
downloadnixpkgs-6c961181c2eafd761dd439db0339159016e7f039.tar
nixpkgs-6c961181c2eafd761dd439db0339159016e7f039.tar.gz
nixpkgs-6c961181c2eafd761dd439db0339159016e7f039.tar.bz2
nixpkgs-6c961181c2eafd761dd439db0339159016e7f039.tar.lz
nixpkgs-6c961181c2eafd761dd439db0339159016e7f039.tar.xz
nixpkgs-6c961181c2eafd761dd439db0339159016e7f039.tar.zst
nixpkgs-6c961181c2eafd761dd439db0339159016e7f039.zip
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/gnutls/default.nix')
-rw-r--r--pkgs/development/libraries/gnutls/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/gnutls/default.nix b/pkgs/development/libraries/gnutls/default.nix
index 076f21b7d64..ba441b1082b 100644
--- a/pkgs/development/libraries/gnutls/default.nix
+++ b/pkgs/development/libraries/gnutls/default.nix
@@ -5,11 +5,11 @@ assert guileBindings -> guile != null;
 
 stdenv.mkDerivation (rec {
 
-  name = "gnutls-3.2.0";
+  name = "gnutls-3.1.10";
 
   src = fetchurl {
-    url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.2/${name}.tar.xz";
-    sha256 = "034j843q774ryb7ydr3l1a9x6fblxp18dzqlnihjphzg2cdjyld0";
+    url = "mirror://gnupg/gnutls/v3.1/${name}.tar.xz";
+    sha256 = "0in6wxlvpv48maawmbg3jysq2rhjqxypgi6kkr173hc8kksp6lsk";
   };
 
   # Note: GMP is a dependency of Nettle, whose public headers include
@@ -59,7 +59,7 @@ stdenv.mkDerivation (rec {
        tampering, or message forgery."
     '';
 
-    homepage = http://www.gnutls.org/;
+    homepage = http://www.gnu.org/software/gnutls/;
     license = "LGPLv2.1+";
 
     maintainers = [ stdenv.lib.maintainers.ludo ];