about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorArtturin2024-09-11 23:05:35 +0300
committerAlyssa Ross2024-09-12 08:23:58 +0200
commit8c116c6112f09a538b8b20db8938a42942a6d88b (patch)
treecd734dad3ef09f2a1d2864ae127b7af206ce6b78 /pkgs/shells
parent8ef21e88b600a3a2f7403da0275d54dab1400fef (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.nix2
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";
   };