1 { lib, stdenv, fetchFromGitLab, cmake, openal, pkg-config, libogg,
2 libvorbis, SDL2, makeWrapper, libpng, libjpeg_turbo, libGLU }:
12 stdenv.mkDerivation rec {
17 src = fetchFromGitLab {
21 sha256 = "089rblf8xw3c6dq96vnfla6zl8gxcpcbc1bj5jysfpq63hhdpypz";
24 nativeBuildInputs = [ makeWrapper cmake pkg-config ];
26 buildInputs = [ libGLU openal SDL2 libogg libvorbis libpng libjpeg_turbo ];
28 cmakeFlags = [ "-DSYSTEM_INSTALL=ON" ];
31 description = "Third person ninja rabbit fighting game";
32 mainProgram = "lugaru";
33 homepage = "https://osslugaru.gitlab.io";
35 platforms = platforms.linux;
36 license = licenses.gpl2Plus;