2017-06-12 16:32:53 +01:00
|
|
|
{ callPackage, fetchurl, ... } @ args:
|
2016-06-20 13:17:13 +01:00
|
|
|
|
|
|
|
callPackage ./generic.nix (args // rec {
|
2019-01-26 01:25:54 +00:00
|
|
|
version = "3.6.6";
|
2016-06-20 13:17:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-11-28 20:06:44 +00:00
|
|
|
url = "mirror://gnupg/gnutls/v3.6/gnutls-${version}.tar.xz";
|
2019-01-27 20:59:58 +00:00
|
|
|
sha256 = "19rcfgsfxb01cyz8jxmmgkjqc7y5s97amajzyknk1i1amywcm6mv";
|
2016-06-20 13:17:13 +01:00
|
|
|
};
|
2017-04-10 15:15:02 +01:00
|
|
|
|
2019-01-21 16:53:12 +00:00
|
|
|
# Skip some tests:
|
|
|
|
# - pkgconfig: building against the result won't work before installing (3.5.11)
|
|
|
|
# - fastopen: no idea; it broke between 3.6.2 and 3.6.3 (3437fdde6 in particular)
|
|
|
|
# - trust-store: default trust store path (/etc/ssl/...) is missing in sandbox (3.5.11)
|
|
|
|
# - psk-file: no idea; it broke between 3.6.3 and 3.6.4
|
2018-01-27 17:39:02 +00:00
|
|
|
# Change p11-kit test to use pkg-config to find p11-kit
|
2017-04-10 15:15:02 +01:00
|
|
|
postPatch = ''
|
2019-01-21 16:53:12 +00:00
|
|
|
sed '2iexit 77' -i tests/{pkgconfig,fastopen}.sh
|
|
|
|
sed '/^void doit(void)/,/^{/ s/{/{ exit(77);/' -i tests/{trust-store,psk-file}.c
|
2018-01-27 17:39:02 +00:00
|
|
|
sed 's:/usr/lib64/pkcs11/ /usr/lib/pkcs11/ /usr/lib/x86_64-linux-gnu/pkcs11/:`pkg-config --variable=p11_module_path p11-kit-1`:' -i tests/p11-kit-trust.sh
|
2017-04-10 15:15:02 +01:00
|
|
|
'';
|
2016-06-20 13:17:13 +01:00
|
|
|
})
|