Merge pull request #7795 from Lassulus/gzdoom

add gzdoom package
This commit is contained in:
lethalman 2015-05-14 17:45:46 +02:00
commit 8714140e31
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{stdenv, fetchFromGitHub, cmake, fmod, mesa, SDL2}:
stdenv.mkDerivation {
name = "gzdoom-2015-05-07";
src = fetchFromGitHub{
owner = "coelckers";
repo = "gzdoom";
rev = "a59824cd8897dea5dd452c31be1328415478f990";
sha256 = "1lg9dk5prn2bjmyznq941a862alljvfgbb42whbpg0vw9vhpikak";
};
buildInputs = [ cmake fmod mesa SDL2 ];
cmakeFlags = [ "-DFMOD_LIBRARY=${fmod}/lib/libfmodex.so" ];
preConfigure=''
sed s@gzdoom.pk3@$out/share/gzdoom.pk3@ -i src/version.h
'';
installPhase = ''
mkdir -p $out/bin
cp gzdoom $out/bin
mkdir -p $out/share
cp gzdoom.pk3 $out/share
'';
meta = {
homepage = https://github.com/coelckers/gzdoom;
description = "A Doom source port based on ZDoom. It features an OpenGL renderer and lots of new features";
maintainer = [ stdenv.lib.maintainers.lassulus ];
};
}

View file

@ -13040,6 +13040,8 @@ let
gtypist = callPackage ../games/gtypist { };
gzdoom = callPackage ../games/gzdoom { };
hedgewars = callPackage ../games/hedgewars {
inherit (haskellPackages) ghcWithPackages;
};