3
0
Fork 0
forked from mirrors/nixpkgs

unbound: purge runtime dependency on python

This commit is contained in:
Vladimír Čunát 2015-10-05 16:05:40 +02:00
parent e4f38fb050
commit bf7403f030

View file

@ -23,10 +23,11 @@ stdenv.mkDerivation rec {
installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ];
# get rid of runtime dependency
# get rid of runtime dependencies on $dev outputs
postInstall = ''
substituteInPlace "$lib/lib/libunbound.la" \
--replace '-L${openssl.dev}/lib' ""
--replace '-L${openssl.dev}/lib' "" \
--replace '-L${libevent.dev}/lib' ""
'';
meta = with stdenv.lib; {