From 7cf05bfe71220b7f91a2104ac1d263882104bb61 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 25 Apr 2015 22:35:25 +0200 Subject: [PATCH] boost: use ${python.interpreter} rather than ${python}/bin/python --- pkgs/development/libraries/boost/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 464f244dda38..cd98c0a312be 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -149,7 +149,7 @@ stdenv.mkDerivation { configureScript = "./bootstrap.sh"; configureFlags = commonConfigureFlags ++ [ "--with-icu=${icu}" - "--with-python=${python}/bin/python" + "--with-python=${python.interpreter}" ] ++ optional (toolset != null) "--with-toolset=${toolset}"; buildPhase = builder nativeB2Args;