about summary refs log tree commit diff
path: root/pkgs/servers/nfd/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-07-23 16:33:39 +0200
committerVladimír Čunát <v@cunat.cz>2023-07-23 16:33:39 +0200
commit74e5a1a56b4d08d3d6eba8db2c3f13f74043a7da (patch)
tree11098794e95f4df77880817947bc29cd69d4d91d /pkgs/servers/nfd/default.nix
parent8e057e6e858936ee694d47b5ea4245ab8e34095e (diff)
nfd: fixup build after boost version changes
Diffstat (limited to 'pkgs/servers/nfd/default.nix')
-rw-r--r--pkgs/servers/nfd/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/nfd/default.nix b/pkgs/servers/nfd/default.nix
index 87ce4ce1889f7..30f1140ab50ec 100644
--- a/pkgs/servers/nfd/default.nix
+++ b/pkgs/servers/nfd/default.nix
@@ -1,6 +1,6 @@
 { lib
 , stdenv
-, boost
+, boost179 # probably needs to match the one from ndn-cxx
 , fetchFromGitHub
 , libpcap
 , ndn-cxx
@@ -30,8 +30,8 @@ stdenv.mkDerivation rec {
   buildInputs = [ libpcap ndn-cxx openssl websocketpp ] ++ lib.optional withSystemd systemd;
 
   wafConfigureFlags = [
-    "--boost-includes=${boost.dev}/include"
-    "--boost-libs=${boost.out}/lib"
+    "--boost-includes=${boost179.dev}/include"
+    "--boost-libs=${boost179.out}/lib"
     "--with-tests"
   ] ++ lib.optional (!withWebSocket) "--without-websocket";