summary refs log tree commit diff
path: root/pkgs/games/crispy-doom
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-05-01 12:48:42 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-05-02 22:35:27 -0300
commit2b763f66ce93652a227f31b2144ed02c4ae83e0d (patch)
tree50c1f202d60def69ad89f420ad28ae97eae4863b /pkgs/games/crispy-doom
parent164fc7d18db0d7c75e630bf9c3a1ce177f956455 (diff)
downloadnixpkgs-2b763f66ce93652a227f31b2144ed02c4ae83e0d.tar
nixpkgs-2b763f66ce93652a227f31b2144ed02c4ae83e0d.tar.gz
nixpkgs-2b763f66ce93652a227f31b2144ed02c4ae83e0d.tar.bz2
nixpkgs-2b763f66ce93652a227f31b2144ed02c4ae83e0d.tar.lz
nixpkgs-2b763f66ce93652a227f31b2144ed02c4ae83e0d.tar.xz
nixpkgs-2b763f66ce93652a227f31b2144ed02c4ae83e0d.tar.zst
nixpkgs-2b763f66ce93652a227f31b2144ed02c4ae83e0d.zip
crispyDoom: move to games/doom-ports
Diffstat (limited to 'pkgs/games/crispy-doom')
-rw-r--r--pkgs/games/crispy-doom/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/games/crispy-doom/default.nix b/pkgs/games/crispy-doom/default.nix
deleted file mode 100644
index a4a0fc08730..00000000000
--- a/pkgs/games/crispy-doom/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib, stdenv, autoreconfHook, pkg-config, SDL2, SDL2_mixer, SDL2_net, fetchFromGitHub, python3 }:
-
-stdenv.mkDerivation rec {
-  pname = "crispy-doom";
-  version = "6.0";
-
-  src = fetchFromGitHub {
-    owner = "fabiangreffrath";
-    repo = pname;
-    rev = "${pname}-${version}";
-    sha256 = "sha256-s/TAg0Di8Pkdjhk38c8OanmngjLqA8iEPweVRf1qwQI=";
-  };
-
-  postPatch = ''
-    sed -e 's#/games#/bin#g' -i src{,/setup}/Makefile.am
-    for script in $(grep -lr '^#!/usr/bin/env python3$'); do patchShebangs $script; done
-  '';
-
-  nativeBuildInputs = [ autoreconfHook pkg-config python3 ];
-  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 ];
-  };
-}