nixpkgs/pkgs/games/crispy-doom/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.2 KiB
Nix
Raw Normal View History

2021-12-10 11:59:18 +00:00
{ lib, stdenv, autoreconfHook, pkg-config, SDL2, SDL2_mixer, SDL2_net, fetchFromGitHub, python3 }:
stdenv.mkDerivation rec {
pname = "crispy-doom";
2022-02-11 07:01:56 +00:00
version = "5.11.1";
src = fetchFromGitHub {
owner = "fabiangreffrath";
repo = pname;
rev = "${pname}-${version}";
2022-02-11 07:01:56 +00:00
sha256 = "sha256-2Sjl9XO01ko0BwbFQSFv9mNoetyMa8Dxx17y0JmlLS0=";
};
postPatch = ''
sed -e 's#/games#/bin#g' -i src{,/setup}/Makefile.am
2021-12-10 11:59:18 +00:00
for script in $(grep -lr '^#!/usr/bin/env python3$'); do patchShebangs $script; done
'';
2021-12-10 11:59:18 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config python3 ];
buildInputs = [ SDL2 SDL2_mixer SDL2_net ];
enableParallelBuilding = true;
2021-03-25 11:13:22 +00:00
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.
'';
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ neonfuz ];
};
}