mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
buildPythonPackage: Adapt to the cross-build-aware `stdenv'.
svn path=/nixpkgs/trunk/; revision=20306
This commit is contained in:
parent
67b7a89daf
commit
72d59e3920
1 changed files with 2 additions and 2 deletions
|
@ -15,9 +15,9 @@ let
|
|||
recursiveBuildInputs =
|
||||
pkg:
|
||||
[ pkg ] ++
|
||||
(if pkg ? propagatedBuildInputs
|
||||
(if pkg ? propagatedBuildNativeInputs
|
||||
then lib.concatLists (map recursiveBuildInputs
|
||||
pkg.propagatedBuildInputs)
|
||||
pkg.propagatedBuildNativeInputs)
|
||||
else []);
|
||||
|
||||
in
|
||||
|
|
Loading…
Reference in a new issue