Unverified Commit 7e1f7217 authored by a-n-n-a-l-e-e's avatar a-n-n-a-l-e-e Committed by GitHub
Browse files

Merge pull request #290116 from evilbulgarian/master

adding my info to nixos maintainers, and adding sopwith video game
parents c6568112 09991e37
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -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";
+41 −0
Original line number Diff line number Diff line
{ 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;
  };
}