summary refs log tree commit diff
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)
downloadnixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar.gz
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar.bz2
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar.lz
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar.xz
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar.zst
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.zip
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 923bc61f67d..cbe1f984059 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"