unbound: purge runtime dependency on python

+3 -2
+3 -2
pkgs/tools/networking/unbound/default.nix
··· 23 24 installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ]; 25 26 - # get rid of runtime dependency 27 postInstall = '' 28 substituteInPlace "$lib/lib/libunbound.la" \ 29 - --replace '-L${openssl.dev}/lib' "" 30 ''; 31 32 meta = with stdenv.lib; {
··· 23 24 installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ]; 25 26 + # get rid of runtime dependencies on $dev outputs 27 postInstall = '' 28 substituteInPlace "$lib/lib/libunbound.la" \ 29 + --replace '-L${openssl.dev}/lib' "" \ 30 + --replace '-L${libevent.dev}/lib' "" 31 ''; 32 33 meta = with stdenv.lib; {