boost: Disable Python / Numpy support by default

We can't have a C++ library pulling in Numpy and its gazillion
dependencies by default.
wip/yesman
Eelco Dolstra 6 years ago
parent c8ed322b04
commit 772eef9168
  1. 4
      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

Loading…
Cancel
Save