Merge pull request #70782 from wizeman/u/fix-gnutls-aarch64
gnutls: fix test-ciphers-api.sh failure on aarch64
This commit is contained in:
commit
7eccec667e
2 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{ config, lib, stdenv, fetchurl, zlib, lzo, libtasn1, nettle, pkgconfig, lzip
|
||||
, perl, gmp, autoconf, autogen, automake, libidn, p11-kit, libiconv
|
||||
, unbound, dns-root-data, gettext, cacert
|
||||
, unbound, dns-root-data, gettext, cacert, utillinux
|
||||
, guileBindings ? config.gnutls.guile or false, guile
|
||||
, tpmSupport ? false, trousers, which, nettools, libunistring
|
||||
, withSecurity ? false, Security # darwin Security.framework
|
||||
|
@ -67,7 +67,7 @@ stdenv.mkDerivation {
|
|||
|
||||
nativeBuildInputs = [ perl pkgconfig ]
|
||||
++ lib.optionals (isDarwin && !withSecurity) [ autoconf automake ]
|
||||
++ lib.optionals doCheck [ which nettools ];
|
||||
++ lib.optionals doCheck [ which nettools utillinux ];
|
||||
|
||||
propagatedBuildInputs = [ nettle ];
|
||||
|
||||
|
|
|
@ -11185,6 +11185,7 @@ in
|
|||
|
||||
gnutls = callPackage ../development/libraries/gnutls/default.nix {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
utillinux = utillinuxMinimal; # break the cyclic dependency
|
||||
};
|
||||
|
||||
gnutls-kdh = callPackage ../development/libraries/gnutls-kdh/3.5.nix {
|
||||
|
|
Loading…
Reference in a new issue