nfd: pin to boost 1.86 (#378537)

Fix NFD compilation

Pinning boost version to 1.86.
Latest version (1.87) seems to break websocketpp
This commit is contained in:
Filippo Berto
2025-02-02 23:42:39 +01:00
committed by GitHub
parent d9c8f65a65
commit 2c704b65f9
+3 -3
View File
@@ -1,7 +1,7 @@
{
lib,
stdenv,
boost,
boost186,
fetchFromGitHub,
libpcap,
ndn-cxx,
@@ -44,8 +44,8 @@ stdenv.mkDerivation rec {
++ lib.optional withWebSocket websocketpp
++ lib.optional withSystemd systemd;
wafConfigureFlags = [
"--boost-includes=${boost.dev}/include"
"--boost-libs=${boost.out}/lib"
"--boost-includes=${boost186.dev}/include"
"--boost-libs=${boost186.out}/lib"
] ++ lib.optional (!withWebSocket) "--without-websocket";
meta = with lib; {