85ac790666
Fixes the following security issues: * CVE-2017-5334 * CVE-2017-5335 * CVE-2017-5336 * CVE-2017-5337 See https://www.gnutls.org/news.html#2017-01-09 for more information.
12 lines
326 B
Nix
12 lines
326 B
Nix
{ callPackage, fetchurl, libunistring, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
version = "3.5.8";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5/gnutls-${version}.tar.xz";
|
|
sha256 = "1zyl2z63s68hx1dpxqx0lykmlf3rwrzlrf44sq3h7dvjmr1z55qf";
|
|
};
|
|
|
|
buildInputs = [ libunistring ];
|
|
})
|