nfd: fixup build after boost version changes
This commit is contained in:
parent
8e057e6e85
commit
74e5a1a56b
1 changed files with 3 additions and 3 deletions
|
@ -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";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue