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

21 lines
848 B
Nix
Raw Normal View History

2017-06-12 15:32:53 +00:00
{ callPackage, fetchurl, ... } @ args:
2016-06-20 12:17:13 +00:00
callPackage ./generic.nix (args // rec {
2018-02-22 06:24:02 +00:00
version = "3.6.2";
2016-06-20 12:17:13 +00:00
src = fetchurl {
2017-11-28 20:06:44 +00:00
url = "mirror://gnupg/gnutls/v3.6/gnutls-${version}.tar.xz";
2018-02-22 06:24:02 +00:00
sha256 = "07wdffklwmxpa9i50sh5nwrc5ajb47skrldm6rzjc0jf4dxxpmdw";
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
# Change p11-kit test to use pkg-config to find p11-kit
2017-04-10 14:15:02 +00:00
postPatch = ''
sed '2iexit 77' -i tests/pkgconfig.sh
sed '/^void doit(void)/,$s/{/{ exit(77);/; t' -i tests/trust-store.c
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 14:15:02 +00:00
'';
2016-06-20 12:17:13 +00:00
})