biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / games / lugaru / default.nix
blobba8dcdebcec3c8872542464247e081d0aa27fa45
1 { lib, stdenv, fetchFromGitLab, cmake, openal, pkg-config, libogg,
2   libvorbis, SDL2, makeWrapper, libpng, libjpeg_turbo, libGLU }:
4 let
5   inherit (lib)
6     licenses
7     maintainers
8     platforms
9     ;
12 stdenv.mkDerivation rec {
14   pname = "lugaru";
15   version = "1.2";
17   src = fetchFromGitLab {
18     owner = "osslugaru";
19     repo = "lugaru";
20     rev = version;
21     sha256 = "089rblf8xw3c6dq96vnfla6zl8gxcpcbc1bj5jysfpq63hhdpypz";
22   };
24   nativeBuildInputs = [ makeWrapper cmake pkg-config ];
26   buildInputs = [ libGLU openal SDL2 libogg libvorbis libpng libjpeg_turbo ];
28   cmakeFlags = [ "-DSYSTEM_INSTALL=ON" ];
30   meta = {
31     description = "Third person ninja rabbit fighting game";
32     mainProgram = "lugaru";
33     homepage = "https://osslugaru.gitlab.io";
34     maintainers = [ ];
35     platforms = platforms.linux;
36     license = licenses.gpl2Plus;
37   };