nfd: fixup build after boost version changes

This commit is contained in:
Vladimír Čunát 2023-07-23 16:33:39 +02:00
parent 8e057e6e85
commit 74e5a1a56b
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -1,6 +1,6 @@
{ lib { lib
, stdenv , stdenv
, boost , boost179 # probably needs to match the one from ndn-cxx
, fetchFromGitHub , fetchFromGitHub
, libpcap , libpcap
, ndn-cxx , ndn-cxx
@ -30,8 +30,8 @@ stdenv.mkDerivation rec {
buildInputs = [ libpcap ndn-cxx openssl websocketpp ] ++ lib.optional withSystemd systemd; buildInputs = [ libpcap ndn-cxx openssl websocketpp ] ++ lib.optional withSystemd systemd;
wafConfigureFlags = [ wafConfigureFlags = [
"--boost-includes=${boost.dev}/include" "--boost-includes=${boost179.dev}/include"
"--boost-libs=${boost.out}/lib" "--boost-libs=${boost179.out}/lib"
"--with-tests" "--with-tests"
] ++ lib.optional (!withWebSocket) "--without-websocket"; ] ++ lib.optional (!withWebSocket) "--without-websocket";