Skip to content

Commit

Permalink
boost: Disable Python / Numpy support by default
Browse files Browse the repository at this point in the history
We can't have a C++ library pulling in Numpy and its gazillion
dependencies by default.
  • Loading branch information
edolstra committed Jul 1, 2018
1 parent c8ed322 commit 772eef9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/boost/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 772eef9

Please sign in to comment.