summaryrefslogtreecommitdiffstats
path: root/pkgs/games
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-04-06 02:43:23 +0200
committerGitHub <noreply@github.com>2024-04-06 02:43:23 +0200
commita53adda0fecf2a31e2106f35fa74fb0945e005c7 (patch)
treead3fd142e50da20df3f4743f36afa02a838ba45a /pkgs/games
parentc1b88e17288065ae8f3a5750f58f9c59f9d78091 (diff)
parentff2abcc9b7972092587889265b44b51b3de79120 (diff)
Merge pull request #300456 from CyberShadow/pull-20240331-104807
snipes: 20180930 -> 20240317
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/snipes/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/games/snipes/default.nix b/pkgs/games/snipes/default.nix
index 17a848402a51..f978a1b71d7b 100644
--- a/pkgs/games/snipes/default.nix
+++ b/pkgs/games/snipes/default.nix
@@ -8,20 +8,18 @@ let
in stdenv.mkDerivation {
pname = "snipes";
- version = "20180930";
+ version = "20240317";
src = fetchFromGitHub {
owner = "Davidebyzero";
repo = "Snipes";
- rev = "594af45108e07aa4159c3babc9b5e53609c3fd6e";
- sha256 = "0gmh38swm74jmljy0bq27ipqzb4h8y9rzwc1j6harbd9qqz5knac";
+ rev = "caa2ce036a9f6461ccdb7ef8306edbd126dd4081";
+ sha256 = "sha256-iIoh5odCziX1cKs5qf4hJdXpUhy9kdht0YMLLfhvKZA=";
};
postPatch = ''
substitute config-sample.h config.h \
--replace SnipesConsole.ttf $out/share/snipes/SnipesConsole.ttf
- substituteInPlace GNUmakefile \
- --replace 'CFLAGS=-Werror -Wall' 'CFLAGS=-Wall'
'';
enableParallelBuilding = true;
@@ -43,6 +41,7 @@ in stdenv.mkDerivation {
mainProgram = "snipes";
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 ];
+ maintainers = with maintainers; [ peterhoeg cybershadow ];
+ broken = stdenv.isDarwin; # not supported upstream - https://github.com/Davidebyzero/Snipes/issues/8#issuecomment-433720046
};
}