about summary refs log tree commit diff
path: root/pkgs/servers/dns
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-14 15:24:37 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-21 15:49:54 -0400
commited14223f8c30c014190e87914126578babd94c3e (patch)
treea0cf6d519d4d4d8507b204076ae5b0dad40f0d18 /pkgs/servers/dns
parent7a733ceda45d9e7842685523cfebeee07aaa3f97 (diff)
downloadnixlib-ed14223f8c30c014190e87914126578babd94c3e.tar
nixlib-ed14223f8c30c014190e87914126578babd94c3e.tar.gz
nixlib-ed14223f8c30c014190e87914126578babd94c3e.tar.bz2
nixlib-ed14223f8c30c014190e87914126578babd94c3e.tar.lz
nixlib-ed14223f8c30c014190e87914126578babd94c3e.tar.xz
nixlib-ed14223f8c30c014190e87914126578babd94c3e.tar.zst
nixlib-ed14223f8c30c014190e87914126578babd94c3e.zip
treewide: Manual fix more pkg-config build-inputs
Diffstat (limited to 'pkgs/servers/dns')
-rw-r--r--pkgs/servers/dns/pdns-recursor/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/servers/dns/pdns-recursor/default.nix b/pkgs/servers/dns/pdns-recursor/default.nix
index 70deadb74e14..0e8d1e70bc70 100644
--- a/pkgs/servers/dns/pdns-recursor/default.nix
+++ b/pkgs/servers/dns/pdns-recursor/default.nix
@@ -18,8 +18,9 @@ stdenv.mkDerivation rec {
     sha256 = "0k8y9zxj2lz4rq782vgzr28yd43q0hwlnvszwq0k9l6c967pff13";
   };
 
+  nativeBuildInputs = [ pkgconfig ];
   buildInputs = [
-    boost openssl pkgconfig systemd
+    boost openssl systemd
   ] ++ optional enableLua [ lua luajit ]
     ++ optional enableProtoBuf protobuf;