hhexen: init at 1.6.3 (#110792)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Jonathan Strickland 2021-01-25 19:30:05 -05:00 committed by GitHub
parent 1e38f0bdf9
commit eb6b3ab09f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, fetchurl, SDL, stdenv }:
stdenv.mkDerivation rec {
name = "hhexen";
version = "1.6.3";
src = fetchurl {
url = "mirror://sourceforge/hhexen/hhexen-${version}-src.tgz";
sha256 = "1jwccqawbdn0rjn5p59j21rjy460jdhps7zwn2z0gq9biggw325b";
};
buildInputs = [ SDL ];
installPhase = ''
install -Dm755 hhexen-gl -t $out/bin
'';
meta = with lib; {
description = "Linux port of Raven Game's Hexen";
homepage = "http://hhexen.sourceforge.net/hhexen.html";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ djanatyn ];
};
}

View file

@ -27254,6 +27254,8 @@ in
gnome-tour = callPackage ../desktops/gnome-3/core/gnome-tour { };
hhexen = callPackage ../games/hhexen { };
hsetroot = callPackage ../tools/X11/hsetroot { };
imwheel = callPackage ../tools/X11/imwheel { };