Merge pull request #300456 from CyberShadow/pull-20240331-104807

snipes: 20180930 -> 20240317

authored by Peder Bergebakken Sundt and committed by GitHub a53adda0 c1b88e17

+16 -6
+11
maintainers/maintainer-list.nix
··· 4156 4156 githubId = 16950437; 4157 4157 name = "cwyc"; 4158 4158 }; 4159 + cybershadow = { 4160 + name = "Vladimir Panteleev"; 4161 + email = "nixpkgs@cy.md"; 4162 + matrix = "@cybershadow:cy.md"; 4163 + github = "CyberShadow"; 4164 + githubId = 160894; 4165 + 4166 + keys = [{ 4167 + fingerprint = "BBED 1B08 8CED 7F95 8917 FBE8 5004 F0FA D051 576D"; 4168 + }]; 4169 + }; 4159 4170 cynerd = { 4160 4171 name = "Karel Kočí"; 4161 4172 email = "cynerd@email.cz";
+5 -6
pkgs/games/snipes/default.nix
··· 8 8 9 9 in stdenv.mkDerivation { 10 10 pname = "snipes"; 11 - version = "20180930"; 11 + version = "20240317"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Davidebyzero"; 15 15 repo = "Snipes"; 16 - rev = "594af45108e07aa4159c3babc9b5e53609c3fd6e"; 17 - sha256 = "0gmh38swm74jmljy0bq27ipqzb4h8y9rzwc1j6harbd9qqz5knac"; 16 + rev = "caa2ce036a9f6461ccdb7ef8306edbd126dd4081"; 17 + sha256 = "sha256-iIoh5odCziX1cKs5qf4hJdXpUhy9kdht0YMLLfhvKZA="; 18 18 }; 19 19 20 20 postPatch = '' 21 21 substitute config-sample.h config.h \ 22 22 --replace SnipesConsole.ttf $out/share/snipes/SnipesConsole.ttf 23 - substituteInPlace GNUmakefile \ 24 - --replace 'CFLAGS=-Werror -Wall' 'CFLAGS=-Wall' 25 23 ''; 26 24 27 25 enableParallelBuilding = true; ··· 43 41 mainProgram = "snipes"; 44 42 homepage = "https://www.vogons.org/viewtopic.php?f=7&t=49073"; 45 43 license = licenses.free; # This reverse-engineered source code is released with the original authors' permission. 46 - maintainers = with maintainers; [ peterhoeg ]; 44 + maintainers = with maintainers; [ peterhoeg cybershadow ]; 45 + broken = stdenv.isDarwin; # not supported upstream - https://github.com/Davidebyzero/Snipes/issues/8#issuecomment-433720046 47 46 }; 48 47 }