2021-03-25 11:13:22 +00:00
|
|
|
{ lib, stdenv, autoreconfHook, pkg-config, SDL2, SDL2_mixer, SDL2_net, fetchFromGitHub, python2 }:
|
2018-08-08 08:34:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-10-12 14:58:46 +01:00
|
|
|
pname = "crispy-doom";
|
2021-03-25 03:48:06 +00:00
|
|
|
version = "5.10.1";
|
2019-10-12 14:58:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fabiangreffrath";
|
|
|
|
repo = pname;
|
|
|
|
rev = "${pname}-${version}";
|
2021-03-25 03:48:06 +00:00
|
|
|
sha256 = "sha256-5doytVxemqaXWXiqDSQUEAe71xmY0pOLASj/NJNyM5g=";
|
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
|
2020-08-22 05:44:23 +01:00
|
|
|
for script in $(grep -lr '^#!/usr/bin/env python$'); do patchShebangs $script; done
|
2018-08-08 08:34:32 +01:00
|
|
|
'';
|
|
|
|
|
2021-03-25 11:13:22 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config python2 ];
|
2019-10-12 14:58:46 +01:00
|
|
|
buildInputs = [ SDL2 SDL2_mixer SDL2_net ];
|
2018-08-08 08:34:32 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-03-25 11:13:22 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2018-08-08 08:34:32 +01:00
|
|
|
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.
|
|
|
|
'';
|
2021-01-15 04:31:39 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = with lib.maintainers; [ neonfuz ];
|
2018-08-08 08:34:32 +01:00
|
|
|
};
|
|
|
|
}
|