diff options
author | Artturin | 2024-09-11 23:05:35 +0300 |
---|---|---|
committer | Alyssa Ross | 2024-09-12 08:23:58 +0200 |
commit | 8c116c6112f09a538b8b20db8938a42942a6d88b (patch) | |
tree | cd734dad3ef09f2a1d2864ae127b7af206ce6b78 /pkgs/shells | |
parent | 8ef21e88b600a3a2f7403da0275d54dab1400fef (diff) |
bash: `badPlatforms` `mingw`
`bash` doesn't compile for `mingw` https://www.github.com/NixOS/nixpkgs/issues/333338
Diffstat (limited to 'pkgs/shells')
-rw-r--r-- | pkgs/shells/bash/5.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/shells/bash/5.nix b/pkgs/shells/bash/5.nix index b2167b9ef7fa..614b3c377ea2 100644 --- a/pkgs/shells/bash/5.nix +++ b/pkgs/shells/bash/5.nix @@ -151,6 +151,8 @@ stdenv.mkDerivation rec { ''; license = licenses.gpl3Plus; platforms = platforms.all; + # https://github.com/NixOS/nixpkgs/issues/333338 + badPlatforms = [ lib.systems.inspect.patterns.isMinGW ]; maintainers = [ ]; mainProgram = "bash"; }; |