1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-19 17:39:34 +00:00

gnutls: Remove potentially insecure 3.2

This commit is contained in:
William A. Kennington III 2015-05-08 06:08:46 -07:00
parent 3a07187003
commit f5ea3fe589
2 changed files with 0 additions and 17 deletions
pkgs
development/libraries/gnutls
top-level

View file

@ -1,10 +0,0 @@
{ callPackage, fetchurl, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "3.2.21";
src = fetchurl {
url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.2/gnutls-${version}.tar.lz";
sha256 = "1xydzlwmf0frxvr26yw0ily5vwkdvf90m53fix61bi5gx4xd2m7m";
};
})

View file

@ -6032,18 +6032,11 @@ let
gnutls = gnutls33;
gnutls32 = callPackage ../development/libraries/gnutls/3.2.nix {
guileBindings = config.gnutls.guile or false;
nettle = nettle27;
};
gnutls33 = callPackage ../development/libraries/gnutls/3.3.nix {
guileBindings = config.gnutls.guile or false;
nettle = nettle27;
};
gnutls32_with_guile = lowPrio (gnutls32.override { guileBindings = true; });
gnutls33_with_guile = lowPrio (gnutls33.override { guileBindings = true; });
gpac = callPackage ../applications/video/gpac { };