From 8c116c6112f09a538b8b20db8938a42942a6d88b Mon Sep 17 00:00:00 2001 From: Artturin Date: Wed, 11 Sep 2024 23:05:35 +0300 Subject: [PATCH] bash: `badPlatforms` `mingw` `bash` doesn't compile for `mingw` https://www.github.com/NixOS/nixpkgs/issues/333338 --- pkgs/shells/bash/5.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/shells/bash/5.nix b/pkgs/shells/bash/5.nix index b2167b9ef7fac..614b3c377ea2a 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"; };