From 775d1ecf578bed07b22f5780feae60f6272b4f1e Mon Sep 17 00:00:00 2001 From: Stephen Date: Mon, 27 Aug 2018 11:44:07 -0700 Subject: [PATCH] boost: disable python explicitly in b2Args (#45679) (cherry picked from commit 3b862a638952c814c49291ca3efa13e8363c77a2) --- pkgs/development/libraries/boost/generic.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index dab6fac6f0c..d2b70ebe691 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -74,6 +74,7 @@ let ] ++ optional (link != "static") "runtime-link=${runtime-link}" ++ optional (variant == "release") "debug-symbols=off" ++ optional (toolset != null) "toolset=${toolset}" + ++ optional (!enablePython) "--without-python" ++ optional (mpi != null || hostPlatform != buildPlatform) "--user-config=user-config.jam" ++ optionals (hostPlatform.libc == "msvcrt") [ "threadapi=win32"