summary refs log tree commit diff
path: root/pkgs/stdenv
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2022-11-21 19:22:16 +0200
committerGitHub <noreply@github.com>2022-11-21 19:22:16 +0200
commitdf3056bfac5da6735a12d18fd6b8cdcc6f6eb042 (patch)
tree1a54d405a0c52f71049e83eb29cc401fcae2c39a /pkgs/stdenv
parent82fe3d27fbe6faa9b2523f3162dbbfcb50903aa6 (diff)
parent10030672ab9ab4cd961e414b7026f78d94c6ecc9 (diff)
downloadnixpkgs-df3056bfac5da6735a12d18fd6b8cdcc6f6eb042.tar
nixpkgs-df3056bfac5da6735a12d18fd6b8cdcc6f6eb042.tar.gz
nixpkgs-df3056bfac5da6735a12d18fd6b8cdcc6f6eb042.tar.bz2
nixpkgs-df3056bfac5da6735a12d18fd6b8cdcc6f6eb042.tar.lz
nixpkgs-df3056bfac5da6735a12d18fd6b8cdcc6f6eb042.tar.xz
nixpkgs-df3056bfac5da6735a12d18fd6b8cdcc6f6eb042.tar.zst
nixpkgs-df3056bfac5da6735a12d18fd6b8cdcc6f6eb042.zip
Merge pull request #176597 from amjoseph-nixpkgs/pr/remove-redundant-file-buildInput
stdenv/cross: remove now-redundant `file` nativeBuildInput on mingw
Diffstat (limited to 'pkgs/stdenv')
-rw-r--r--pkgs/stdenv/cross/default.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/stdenv/cross/default.nix b/pkgs/stdenv/cross/default.nix
index e01ac74599a..bf410ec0a68 100644
--- a/pkgs/stdenv/cross/default.nix
+++ b/pkgs/stdenv/cross/default.nix
@@ -83,9 +83,6 @@ in lib.init bootStages ++ [
              (let f = p: !p.isx86 || builtins.elem p.libc [ "musl" "wasilibc" "relibc" ] || p.isiOS || p.isGenode;
                in f hostPlatform && !(f buildPlatform) )
              buildPackages.updateAutotoolsGnuConfigScriptsHook
-           # without proper `file` command, libtool sometimes fails
-           # to recognize 64-bit DLLs
-        ++ lib.optional (hostPlatform.config == "x86_64-w64-mingw32") buildPackages.file
         ;
     }));
   })