aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/boost
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-07-01 19:13:57 +0200
committerEelco Dolstra <edolstra@gmail.com>2018-07-01 19:13:57 +0200
commit772eef91686974b7710081a9a77e5c0e287c25e8 (patch)
tree140d9cf416111d5296ffc1e7bfb57512bbbf5c99 /pkgs/development/libraries/boost
parentc8ed322b04bd1777c5f5ae6d06820983d6859b49 (diff)
boost: Disable Python / Numpy support by default
We can't have a C++ library pulling in Numpy and its gazillion dependencies by default.
Diffstat (limited to 'pkgs/development/libraries/boost')
-rw-r--r--pkgs/development/libraries/boost/generic.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix
index 00c6d279c7ac..34e837f7cd2b 100644
--- a/pkgs/development/libraries/boost/generic.nix
+++ b/pkgs/development/libraries/boost/generic.nix
@@ -9,8 +9,8 @@
, enableMultiThreaded ? true
, enableShared ? !(hostPlatform.libc == "msvcrt") # problems for now
, enableStatic ? !enableShared
-, enablePython ? hostPlatform == buildPlatform
-, enableNumpy ? enablePython && stdenv.lib.versionAtLeast version "1.65"
+, enablePython ? false
+, enableNumpy ? false
, taggedLayout ? ((enableRelease && enableDebug) || (enableSingleThreaded && enableMultiThreaded) || (enableShared && enableStatic))
, patches ? []
, mpi ? null