summary refs log tree commit diff
path: root/pkgs/development/libraries/gnutls
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-06-15 02:30:30 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-06-15 13:43:01 +0200
commitcb59381eee5e89079cc855e52777dae7dc29263d (patch)
treeeaf8a23a14d4ac2793803ea9b5d7fc15065aced9 /pkgs/development/libraries/gnutls
parent4ac68216bd012aeb9629998bff09545768e09b4b (diff)
downloadnixpkgs-cb59381eee5e89079cc855e52777dae7dc29263d.tar
nixpkgs-cb59381eee5e89079cc855e52777dae7dc29263d.tar.gz
nixpkgs-cb59381eee5e89079cc855e52777dae7dc29263d.tar.bz2
nixpkgs-cb59381eee5e89079cc855e52777dae7dc29263d.tar.lz
nixpkgs-cb59381eee5e89079cc855e52777dae7dc29263d.tar.xz
nixpkgs-cb59381eee5e89079cc855e52777dae7dc29263d.tar.zst
nixpkgs-cb59381eee5e89079cc855e52777dae7dc29263d.zip
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.
Diffstat (limited to 'pkgs/development/libraries/gnutls')
-rw-r--r--pkgs/development/libraries/gnutls/generic.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gnutls/generic.nix b/pkgs/development/libraries/gnutls/generic.nix
index 3aef10df33e..48aa3fb9673 100644
--- a/pkgs/development/libraries/gnutls/generic.nix
+++ b/pkgs/development/libraries/gnutls/generic.nix
@@ -1,5 +1,5 @@
 { 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
 
 # Version dependent args
@@ -40,7 +40,6 @@ stdenv.mkDerivation {
   buildInputs = [ lzo lzip libtasn1 libidn p11_kit zlib gmp autogen libunistring ]
     ++ lib.optional (stdenv.isFreeBSD || stdenv.isDarwin) libiconv
     ++ lib.optional (tpmSupport && stdenv.isLinux) trousers
-    ++ [ unbound ]
     ++ lib.optional guileBindings guile
     ++ buildInputs;