knot-dns: another attempt to fix build on Darwin

The effort is getting long, without any direct access to a Darwin machine.
This commit is contained in:
Vladimír Čunát 2017-01-30 10:09:14 +01:00
parent 63f609b1a4
commit fd32b16f9e
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -15,11 +15,12 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ buildInputs = [
gnutls jansson liburcu lmdb libidn gnutls jansson liburcu libidn
nettle libedit nettle libedit
# without sphinx &al. for developer documentation # without sphinx &al. for developer documentation
] ]
++ stdenv.lib.optionals stdenv.isLinux [ libcap_ng systemd ]; # Use embedded lmdb there for now, as detection is broken on Darwin somehow.
++ stdenv.lib.optionals stdenv.isLinux [ libcap_ng systemd lmdb ];
enableParallelBuilding = true; enableParallelBuilding = true;