2014-09-02 10:36:47 +02:00
|
|
|
{ stdenv, autoconf, automake, pkgconfig, SDL, SDL_mixer, SDL_net, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-10-22 08:47:51 +02:00
|
|
|
name = "chocolate-doom-2.1.0";
|
2014-09-02 10:36:47 +02:00
|
|
|
src = fetchurl {
|
2014-10-22 08:47:51 +02:00
|
|
|
url = "https://github.com/chocolate-doom/chocolate-doom/archive/${name}.tar.gz";
|
|
|
|
sha256 = "1qwnc5j3n99jk35c487mxsij04m4kpkqzkbrb8qwqlsnqllyh1s1";
|
2014-09-02 10:36:47 +02:00
|
|
|
};
|
2014-10-08 15:31:42 +02:00
|
|
|
buildInputs = [ autoconf automake pkgconfig SDL SDL_mixer SDL_net ];
|
2014-09-02 10:36:47 +02:00
|
|
|
patchPhase = ''
|
|
|
|
sed -e 's#/games#/bin#g' -i src{,/setup}/Makefile.am
|
|
|
|
./autogen.sh --prefix=$out
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://chocolate-doom.org/;
|
2014-09-09 07:11:14 +02:00
|
|
|
description = "A Doom source port that accurately reproduces the experience of Doom as it was played in the 1990s";
|
2014-09-02 10:36:47 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2014-11-19 12:03:00 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-09-02 10:36:47 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ MP2E ];
|
|
|
|
};
|
|
|
|
}
|