Merge pull request #290116 from evilbulgarian/master

adding my info to nixos maintainers, and adding sopwith video game
This commit is contained in:
a-n-n-a-l-e-e 2024-03-02 00:53:58 -08:00 committed by GitHub
commit 7e1f7217d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 50 additions and 0 deletions

View File

@ -6041,6 +6041,15 @@
githubId = 159288204;
name = "evey";
};
evilbulgarian = {
email = "vladi@aresgate.net";
github = "evilbulgarian";
githubId = 1960413;
name = "Vladi Gergov";
keys = [{
fingerprint = "50D5 67C5 D693 15A2 76F5 5634 3758 5F3C A9EC BFA4";
}];
};
evilmav = {
email = "elenskiy.ilya@gmail.com";
github = "evilmav";

View File

@ -0,0 +1,41 @@
{ lib
, stdenv
, fetchFromGitHub
, glib
, SDL2
, libGL
, pkg-config
, autoreconfHook
}:
stdenv.mkDerivation rec {
pname = "sopwith";
version = "2.3.0";
src = fetchFromGitHub {
owner = "fragglet";
repo = "sdl-sopwith";
rev = "refs/tags/sdl-sopwith-${version}";
hash = "sha256-C0OpFA3q3K5lgoVe0F03/zXlNba/zW7YEIH+2BV/nCI=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
glib
SDL2
libGL
];
meta = with lib; {
homepage = "https://github.com/fragglet/sdl-sopwith";
description = "Classic biplane shoot em-up game.";
license = licenses.gpl2Plus;
mainProgram = "sopwith";
maintainers = with maintainers; [ evilbulgarian ];
platforms = platforms.unix;
};
}