chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / so / sopwith / package.nix
blobfe6fb0c147d321e94c838d724ac26308fc06d814
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.5.0";
15   src = fetchFromGitHub {
16     owner = "fragglet";
17     repo = "sdl-sopwith";
18     rev = "refs/tags/sdl-sopwith-${version}";
19     hash = "sha256-e7/Cv/v5NhYG5eb9B5oVxh/Dbmm2v4Y4KUKI4JI5SFw=";
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   };