gnutls: remove dependency on unbound
Unbound is used for DANE support but this requires the unbound trust anchor in /etc/unbound/root.key which we don't create in any NixOS module.
This commit is contained in:
parent
4ac68216bd
commit
cb59381eee
@ -1,5 +1,5 @@
|
|||||||
{ lib, fetchurl, stdenv, zlib, lzo, libtasn1, nettle, pkgconfig, lzip
|
{ lib, fetchurl, stdenv, zlib, lzo, libtasn1, nettle, pkgconfig, lzip
|
||||||
, guileBindings, guile, perl, gmp, autogen, libidn, p11_kit, unbound, libiconv
|
, guileBindings, guile, perl, gmp, autogen, libidn, p11_kit, libiconv
|
||||||
, tpmSupport ? false, trousers, which, nettools, libunistring
|
, tpmSupport ? false, trousers, which, nettools, libunistring
|
||||||
|
|
||||||
# Version dependent args
|
# Version dependent args
|
||||||
@ -40,7 +40,6 @@ stdenv.mkDerivation {
|
|||||||
buildInputs = [ lzo lzip libtasn1 libidn p11_kit zlib gmp autogen libunistring ]
|
buildInputs = [ lzo lzip libtasn1 libidn p11_kit zlib gmp autogen libunistring ]
|
||||||
++ lib.optional (stdenv.isFreeBSD || stdenv.isDarwin) libiconv
|
++ lib.optional (stdenv.isFreeBSD || stdenv.isDarwin) libiconv
|
||||||
++ lib.optional (tpmSupport && stdenv.isLinux) trousers
|
++ lib.optional (tpmSupport && stdenv.isLinux) trousers
|
||||||
++ [ unbound ]
|
|
||||||
++ lib.optional guileBindings guile
|
++ lib.optional guileBindings guile
|
||||||
++ buildInputs;
|
++ buildInputs;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user