mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
stdenv cross adapter: Use extraNativeBuildInputs
This means we don't need to hackily avoid overwriting `mkDerivation`.
This commit is contained in:
parent
87b4a5d6a7
commit
c12b50b267
@ -63,33 +63,24 @@ rec {
|
||||
# with this run on a different platform, so disable by
|
||||
# default.
|
||||
overrides ? _: _: {}
|
||||
} @ overrideArgs: let
|
||||
stdenv = overrideArgs.stdenv.override {
|
||||
} @ overrideArgs:
|
||||
overrideArgs.stdenv.override (old: {
|
||||
inherit
|
||||
buildPlatform hostPlatform targetPlatform
|
||||
cc overrides;
|
||||
|
||||
allowedRequisites = null;
|
||||
extraNativeBuildInputs = old.extraNativeBuildInputs
|
||||
# without proper `file` command, libtool sometimes fails
|
||||
# to recognize 64-bit DLLs
|
||||
++ stdenv.lib.optional (hostPlatform.config == "x86_64-w64-mingw32") pkgs.file
|
||||
++ stdenv.lib.optional
|
||||
(hostPlatform.isAarch64 || hostPlatform.isMips || hostPlatform.libc == "musl")
|
||||
pkgs.updateAutotoolsGnuConfigScriptsHook
|
||||
;
|
||||
|
||||
extraBuildInputs = [ ]; # Old ones run on wrong platform
|
||||
};
|
||||
in stdenv // {
|
||||
mkDerivation =
|
||||
{ nativeBuildInputs ? []
|
||||
, ...
|
||||
} @ args:
|
||||
|
||||
stdenv.mkDerivation (args // {
|
||||
nativeBuildInputs = nativeBuildInputs
|
||||
# without proper `file` command, libtool sometimes fails
|
||||
# to recognize 64-bit DLLs
|
||||
++ stdenv.lib.optional (hostPlatform.config == "x86_64-w64-mingw32") pkgs.file
|
||||
++ stdenv.lib.optional
|
||||
(hostPlatform.isAarch64 || hostPlatform.isMips || hostPlatform.libc == "musl")
|
||||
pkgs.updateAutotoolsGnuConfigScriptsHook
|
||||
;
|
||||
});
|
||||
};
|
||||
|
||||
});
|
||||
|
||||
/* Modify a stdenv so that the specified attributes are added to
|
||||
every derivation returned by its mkDerivation function.
|
||||
|
Loading…
Reference in New Issue
Block a user