knot-dns: another attempt to fix build on Darwin
This commit is contained in:
parent
a2018cedf5
commit
196b87f707
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, gnutls, jansson, liburcu, lmdb, libcap_ng, libidn
|
{ stdenv, fetchurl, pkgconfig, gnutls, jansson, liburcu, lmdb, libcap_ng, libidn
|
||||||
, systemd, nettle, libedit }:
|
, systemd, nettle, libedit, zlib
|
||||||
|
}:
|
||||||
|
|
||||||
# Note: ATM only the libraries have been tested in nixpkgs.
|
# Note: ATM only the libraries have been tested in nixpkgs.
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -20,7 +21,8 @@ stdenv.mkDerivation rec {
|
|||||||
# without sphinx &al. for developer documentation
|
# without sphinx &al. for developer documentation
|
||||||
]
|
]
|
||||||
# Use embedded lmdb there for now, as detection is broken on Darwin somehow.
|
# Use embedded lmdb there for now, as detection is broken on Darwin somehow.
|
||||||
++ stdenv.lib.optionals stdenv.isLinux [ libcap_ng systemd lmdb ];
|
++ stdenv.lib.optionals stdenv.isLinux [ libcap_ng systemd lmdb ]
|
||||||
|
++ stdenv.lib.optional stdenv.isDarwin zlib; # perhaps due to gnutls
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user