boost: Disable Python / Numpy support by default

We can't have a C++ library pulling in Numpy and its gazillion
dependencies by default.
This commit is contained in:
Eelco Dolstra 2018-07-01 19:13:57 +02:00
parent c8ed322b04
commit 772eef9168

View File

@ -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