mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
buildPythonPackage: Adapt to the cross-build-aware `stdenv'.
svn path=/nixpkgs/trunk/; revision=20306
This commit is contained in:
parent
67b7a89daf
commit
72d59e3920
@ -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 New Issue
Block a user