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:
parent
3a07187003
commit
f5ea3fe589
pkgs
|
@ -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";
|
||||
};
|
||||
})
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue