From ff2abcc9b7972092587889265b44b51b3de79120 Mon Sep 17 00:00:00 2001 From: Vladimir Panteleev Date: Fri, 5 Apr 2024 22:10:41 +0000 Subject: [PATCH] snipes: mark as broken on Darwin --- pkgs/games/snipes/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/games/snipes/default.nix b/pkgs/games/snipes/default.nix index 8eb140de0910..f978a1b71d7b 100644 --- a/pkgs/games/snipes/default.nix +++ b/pkgs/games/snipes/default.nix @@ -42,5 +42,6 @@ in stdenv.mkDerivation { homepage = "https://www.vogons.org/viewtopic.php?f=7&t=49073"; license = licenses.free; # This reverse-engineered source code is released with the original authors' permission. maintainers = with maintainers; [ peterhoeg cybershadow ]; + broken = stdenv.isDarwin; # not supported upstream - https://github.com/Davidebyzero/Snipes/issues/8#issuecomment-433720046 }; }