nixpkgs/pkgs/development/libraries/gnutls/3.5.nix

19 lines
659 B
Nix
Raw Normal View History

{ callPackage, fetchurl, libunistring, ... } @ args:
2016-06-20 12:17:13 +00:00
callPackage ./generic.nix (args // rec {
version = "3.5.13";
2016-06-20 12:17:13 +00:00
src = fetchurl {
url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5/gnutls-${version}.tar.xz";
sha256 = "15ihq6p0hnnhs8cnjrkj40dmlcaa1jjg8xg0g2ydbnlqs454ixbr";
2016-06-20 12:17:13 +00:00
};
2017-04-10 14:15:02 +00: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 12:17:13 +00:00
})