0verkill: init at 2011-01-13

This commit is contained in:
AndersonTorres 2021-02-07 23:02:59 -03:00 committed by Emery Hemingway
parent fa59b9235e
commit 70bcde4329
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, xorgproto
, libX11
, libXpm
}:
stdenv.mkDerivation rec {
pname = "0verkill";
version = "unstable-2011-01-13";
src = fetchFromGitHub {
owner = "hackndev";
repo = pname;
rev = "522f11a3e40670bbf85e0fada285141448167968";
sha256 = "WO7PN192HhcDl6iHIbVbH7MVMi1Tl2KyQbDa9DWRO6M=";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libX11 xorgproto libXpm ];
configureFlags = [ "--with-x" ];
preAutoreconf = ''
autoupdate
'';
hardeningDisable = [ "all" ]; # Someday the upstream will update the code...
meta = with lib; {
homepage = "https://github.com/hackndev/0verkill";
description = "ASCII-ART bloody 2D action deathmatch-like game";
license = with licenses; gpl2Only;
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; unix;
};
}

View file

@ -27339,6 +27339,8 @@ in
zeroad = zeroadPackages.zeroad;
_0verkill = callPackage ../games/0verkill { };
### DESKTOP ENVIRONMENTS
cdesktopenv = callPackage ../desktops/cdesktopenv { };