mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
37 lines
1.2 KiB
Nix
37 lines
1.2 KiB
Nix
{ lib, stdenv, autoreconfHook, pkg-config, SDL2, SDL2_mixer, SDL2_net, fetchFromGitHub, python2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "crispy-doom";
|
|
version = "5.10.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fabiangreffrath";
|
|
repo = pname;
|
|
rev = "${pname}-${version}";
|
|
sha256 = "sha256-F1cK8qusxOHM0DkLEYV5i2ixP3II8ZttwKxd8htd0+A=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -e 's#/games#/bin#g' -i src{,/setup}/Makefile.am
|
|
for script in $(grep -lr '^#!/usr/bin/env python$'); do patchShebangs $script; done
|
|
'';
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config python2 ];
|
|
buildInputs = [ SDL2 SDL2_mixer SDL2_net ];
|
|
enableParallelBuilding = true;
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
homepage = "http://fabiangreffrath.github.io/crispy-doom";
|
|
description = "A limit-removing enhanced-resolution Doom source port based on Chocolate Doom";
|
|
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.
|
|
'';
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ neonfuz ];
|
|
};
|
|
}
|