mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
knot-resolver: drop capabilities after startup
By default. I forgot to add this a long time ago. The difference in runtime closure is really tiny (232 KiB by du).
This commit is contained in:
parent
e61ef63e4e
commit
cd5c7c0ee6
@ -3,7 +3,7 @@
|
||||
, runCommand, pkgconfig, meson, ninja, makeWrapper
|
||||
# build+runtime deps.
|
||||
, knot-dns, luajitPackages, libuv, gnutls, lmdb, systemd, dns-root-data
|
||||
, nghttp2
|
||||
, nghttp2, libcap_ng # optionals, in principle
|
||||
# test-only deps.
|
||||
, cmocka, which, cacert
|
||||
, extraFeatures ? false /* catch-all if defaults aren't enough */
|
||||
@ -55,7 +55,7 @@ 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 ]
|
||||
++ [ nghttp2 libcap_ng ]
|
||||
## optional dependencies; TODO: libedit, dnstap
|
||||
;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user