21.05 beta release
[NixPkgs.git] / pkgs / games / lugaru / default.nix
blob9d10691fe49c69b3b370eb32ef228a6299110668
1 { lib, stdenv, fetchFromGitLab, cmake, openal, pkg-config, libogg,
2   libvorbis, SDL2, makeWrapper, libpng, libjpeg_turbo, libGLU }:
4 with lib;
6 stdenv.mkDerivation rec {
8   pname = "lugaru";
9   version = "1.2";
11   src = fetchFromGitLab {
12     owner = "osslugaru";
13     repo = "lugaru";
14     rev = version;
15     sha256 = "089rblf8xw3c6dq96vnfla6zl8gxcpcbc1bj5jysfpq63hhdpypz";
16   };
18   nativeBuildInputs = [ makeWrapper cmake pkg-config ];
20   buildInputs = [ libGLU openal SDL2 libogg libvorbis libpng libjpeg_turbo ];
22   cmakeFlags = [ "-DSYSTEM_INSTALL=ON" ];
24   meta = {
25     description = "Third person ninja rabbit fighting game";
26     homepage = "https://osslugaru.gitlab.io";
27     maintainers = [ ];
28     platforms = platforms.linux;
29     license = lib.licenses.gpl2Plus;
30   };