From bf7403f030d1a47822178ceb84ad70b3f21669d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 5 Oct 2015 16:05:40 +0200 Subject: [PATCH] unbound: purge runtime dependency on python --- pkgs/tools/networking/unbound/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/unbound/default.nix b/pkgs/tools/networking/unbound/default.nix index c8a502d8c77c..1e1469d0010e 100644 --- a/pkgs/tools/networking/unbound/default.nix +++ b/pkgs/tools/networking/unbound/default.nix @@ -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; {