portfolio: 0.71.2 -> 0.72.2 (#360387)
[NixPkgs.git] / pkgs / by-name / so / sopwith / package.nix
blob0c006b405f8cfdc977df97b16ba6423777979aae
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , glib
5 , SDL2
6 , libGL
7 , pkg-config
8 , autoreconfHook
9 }:
11 stdenv.mkDerivation rec {
12   pname = "sopwith";
13   version = "2.6.0";
15   src = fetchFromGitHub {
16     owner = "fragglet";
17     repo = "sdl-sopwith";
18     rev = "refs/tags/sdl-sopwith-${version}";
19     hash = "sha256-sjg61QgcQDSQ/qrR+4PEZIf8OOnGBZvUSLCKGpS1bwg=";
20   };
22   nativeBuildInputs = [
23     autoreconfHook
24     pkg-config
25   ];
27   buildInputs = [
28     glib
29     SDL2
30     libGL
31   ];
33   meta = with lib; {
34     homepage = "https://github.com/fragglet/sdl-sopwith";
35     description = "Classic biplane shoot ‘em-up game";
36     license = licenses.gpl2Plus;
37     mainProgram = "sopwith";
38     maintainers = with maintainers; [ evilbulgarian ];
39     platforms = platforms.unix;
40   };