tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
unbound: purge runtime dependency on python
Vladimír Čunát
10 years ago
bf7403f0
e4f38fb0
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
unbound
default.nix
+3
-2
pkgs/tools/networking/unbound/default.nix
···
23
23
24
24
installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ];
25
25
26
26
-
# get rid of runtime dependency
26
26
+
# get rid of runtime dependencies on $dev outputs
27
27
postInstall = ''
28
28
substituteInPlace "$lib/lib/libunbound.la" \
29
29
-
--replace '-L${openssl.dev}/lib' ""
29
29
+
--replace '-L${openssl.dev}/lib' "" \
30
30
+
--replace '-L${libevent.dev}/lib' ""
30
31
'';
31
32
32
33
meta = with stdenv.lib; {