mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
nfd: fixup build after boost version changes
This commit is contained in:
parent
8e057e6e85
commit
74e5a1a56b
@ -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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user