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

snipes: 20180930 -> 20240317
This commit is contained in:
Peder Bergebakken Sundt 2024-04-06 02:43:23 +02:00 committed by GitHub
commit a53adda0fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 6 deletions

View File

@ -4156,6 +4156,17 @@
githubId = 16950437;
name = "cwyc";
};
cybershadow = {
name = "Vladimir Panteleev";
email = "nixpkgs@cy.md";
matrix = "@cybershadow:cy.md";
github = "CyberShadow";
githubId = 160894;
keys = [{
fingerprint = "BBED 1B08 8CED 7F95 8917 FBE8 5004 F0FA D051 576D";
}];
};
cynerd = {
name = "Karel Kočí";
email = "cynerd@email.cz";

View File

@ -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
};
}