aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/ndn-cxx
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-04-09 23:44:37 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-04-09 23:44:37 -0400
commita79a8f29bc509b2d51158846c9562e64e1239b4c (patch)
treeaad21af4ec95ec19091ab9c9e813baa544948e27 /pkgs/development/libraries/ndn-cxx
parent52566c3b7b5f96d198dd6e57e2db37012fd9b71b (diff)
waf: use wafConfigureFlags for waf flags
This avoids the potential conflict between autoconf flags and the waf flags. There is some overlap between the two but waf errors when it doesn’t recognize the flag.
Diffstat (limited to 'pkgs/development/libraries/ndn-cxx')
-rw-r--r--pkgs/development/libraries/ndn-cxx/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/ndn-cxx/default.nix b/pkgs/development/libraries/ndn-cxx/default.nix
index 923bc61f67da..cbe1f9840593 100644
--- a/pkgs/development/libraries/ndn-cxx/default.nix
+++ b/pkgs/development/libraries/ndn-cxx/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
};
nativeBuildInputs = [ pkgconfig wafHook ];
buildInputs = [ openssl doxygen boost sqlite python pythonPackages.sphinx];
- configureFlags = [
+ wafConfigureFlags = [
"--with-openssl=${openssl.dev}"
"--boost-includes=${boost.dev}/include"
"--boost-libs=${boost.out}/lib"