19 lines
659 B
Nix
19 lines
659 B
Nix
{ callPackage, fetchurl, libunistring, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
version = "3.5.12";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5/gnutls-${version}.tar.xz";
|
|
sha256 = "1jspvrmydqgz30c1ji94b55gr2dynz7p96p4y8fkhad0xajkkjv3";
|
|
};
|
|
|
|
# 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
|
|
'';
|
|
})
|