2017-06-12 16:32:53 +01:00
|
|
|
{ callPackage, fetchurl, ... } @ args:
|
2016-06-20 13:17:13 +01:00
|
|
|
|
|
|
|
callPackage ./generic.nix (args // rec {
|
2017-11-27 11:42:11 +00:00
|
|
|
version = "3.6.1";
|
2016-06-20 13:17:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5/gnutls-${version}.tar.xz";
|
2017-11-27 11:42:11 +00:00
|
|
|
sha256 = "1vdsir53ddxyapnxh5fpnfyij3scx3818iri4hl07g4lk4n0vc90";
|
2016-06-20 13:17:13 +01:00
|
|
|
};
|
2017-04-10 15:15:02 +01:00
|
|
|
|
|
|
|
# Skip two tests introduced in 3.5.11. Probable reasons of failure:
|
|
|
|
# - pkgconfig: building against the result won't work before installing
|
|
|
|
# - trust-store: default trust store path (/etc/ssl/...) is missing in sandbox
|
|
|
|
postPatch = ''
|
|
|
|
sed '2iexit 77' -i tests/pkgconfig.sh
|
|
|
|
sed '/^void doit(void)/,$s/{/{ exit(77);/; t' -i tests/trust-store.c
|
|
|
|
'';
|
2016-06-20 13:17:13 +01:00
|
|
|
})
|