Skip to content

Commit

Permalink
knot-resolver: fix evaluation on darwin
Browse files Browse the repository at this point in the history
I somehow forgot that libcap_ng is linux-only.  I'm missing ofborg's
darwin builder, but I might've tested evaluation at least...
  • Loading branch information
vcunat committed Nov 18, 2020
1 parent 47b02b3 commit 9a38c3a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/servers/dns/knot-resolver/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# native deps.
, runCommand, pkgconfig, meson, ninja, makeWrapper
# build+runtime deps.
, knot-dns, luajitPackages, libuv, gnutls, lmdb, systemd, dns-root-data
, nghttp2, libcap_ng # optionals, in principle
, knot-dns, luajitPackages, libuv, gnutls, lmdb
, systemd, libcap_ng, dns-root-data, nghttp2 # optionals, in principle
# test-only deps.
, cmocka, which, cacert
, extraFeatures ? false /* catch-all if defaults aren't enough */
Expand Down Expand Up @@ -54,9 +54,9 @@ unwrapped = stdenv.mkDerivation rec {

# http://knot-resolver.readthedocs.io/en/latest/build.html#requirements
buildInputs = [ knot-dns lua.lua libuv gnutls lmdb ]
++ optional stdenv.isLinux systemd # passing sockets, sd_notify
++ [ nghttp2 libcap_ng ]
## optional dependencies; TODO: libedit, dnstap
++ optionals stdenv.isLinux [ systemd libcap_ng ]
++ [ nghttp2 ]
## optional dependencies; TODO: dnstap
;

mesonFlags = [
Expand Down

0 comments on commit 9a38c3a

Please sign in to comment.