forked from mirrors/nixpkgs
parent
1d4ee0a2ef
commit
2038ac39f5
25
pkgs/games/crispy-doom/default.nix
Normal file
25
pkgs/games/crispy-doom/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, autoreconfHook, pkgconfig, SDL2, SDL2_mixer, SDL2_net, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "crispy-doom-5.2";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/fabiangreffrath/crispy-doom/archive/${name}.tar.gz";
|
||||
sha256 = "0arj2pn66ygzdlws80irdhald9sj0wr7cbckfs69z34ij21zzfgz";
|
||||
};
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
buildInputs = [ SDL2 SDL2_mixer SDL2_net ];
|
||||
patchPhase = ''
|
||||
sed -e 's#/games#/bin#g' -i src{,/setup}/Makefile.am
|
||||
'';
|
||||
|
||||
enableParallelBuilding = 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 = stdenv.lib.licenses.gpl2Plus;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = with stdenv.lib.maintainers; [ neonfuz ];
|
||||
};
|
||||
}
|
|
@ -19521,6 +19521,8 @@ with pkgs;
|
|||
|
||||
chocolateDoom = callPackage ../games/chocolate-doom { };
|
||||
|
||||
crispyDoom = callPackage ../games/crispy-doom { };
|
||||
|
||||
ckan = callPackage ../games/ckan { };
|
||||
|
||||
cockatrice = libsForQt5.callPackage ../games/cockatrice { };
|
||||
|
|
Loading…
Reference in a new issue