2019-10-12 14:58:46 +01:00
|
|
|
{ stdenv, autoreconfHook, pkgconfig, SDL2, SDL2_mixer, SDL2_net, fetchFromGitHub }:
|
2018-08-08 08:34:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-10-12 14:58:46 +01:00
|
|
|
pname = "crispy-doom";
|
|
|
|
version = "5.6.3";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fabiangreffrath";
|
|
|
|
repo = pname;
|
|
|
|
rev = "${pname}-${version}";
|
|
|
|
sha256 = "0f319979wqfgm4pvsa6y5clg30p55l441kmrr8db0p5smyv3x2s4";
|
2018-08-08 08:34:32 +01:00
|
|
|
};
|
2019-10-12 14:58:46 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
2018-08-08 08:34:32 +01:00
|
|
|
sed -e 's#/games#/bin#g' -i src{,/setup}/Makefile.am
|
|
|
|
'';
|
|
|
|
|
2019-10-12 14:58:46 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ SDL2 SDL2_mixer SDL2_net ];
|
2018-08-08 08:34:32 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2019-10-12 14:58:46 +01:00
|
|
|
homepage = "http://fabiangreffrath.github.io/crispy-doom";
|
2018-08-08 08:34:32 +01:00
|
|
|
description = "A limit-removing enhanced-resolution Doom source port based on Chocolate Doom";
|
2019-10-12 14:58:46 +01:00
|
|
|
longDescription = ''
|
|
|
|
Crispy Doom is a limit-removing enhanced-resolution Doom source port based on Chocolate Doom.
|
|
|
|
Its name means that 640x400 looks \"crisp\" and is also a slight reference to its origin.
|
|
|
|
'';
|
2018-08-08 08:34:32 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ neonfuz ];
|
|
|
|
};
|
|
|
|
}
|