gnutls: Fix propagated inputs

This commit is contained in:
William A. Kennington III 2015-04-22 14:22:36 -07:00
parent 42f44e9e58
commit cebe937b1e

View file

@ -23,8 +23,10 @@ stdenv.mkDerivation rec {
# for the actual fix.
enableParallelBuilding = !guileBindings;
buildInputs = [ gmp zlib lzo lzip nettle libtasn1 libidn p11_kit unbound trousers ]
buildInputs = [ lzo lzip nettle libtasn1 libidn p11_kit ]
++ stdenv.lib.optional guileBindings guile;
# The paths for these libraries are not specified in the .la and .pc files
propagatedBuildInputs = [ zlib gmp trousers unbound ];
nativeBuildInputs = [ perl pkgconfig autoreconfHook ];