forked from mirrors/nixpkgs
hhexen: init at 1.6.3 (#110792)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
1e38f0bdf9
commit
eb6b3ab09f
22
pkgs/games/hhexen/default.nix
Normal file
22
pkgs/games/hhexen/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -27254,6 +27254,8 @@ in
|
||||||
|
|
||||||
gnome-tour = callPackage ../desktops/gnome-3/core/gnome-tour { };
|
gnome-tour = callPackage ../desktops/gnome-3/core/gnome-tour { };
|
||||||
|
|
||||||
|
hhexen = callPackage ../games/hhexen { };
|
||||||
|
|
||||||
hsetroot = callPackage ../tools/X11/hsetroot { };
|
hsetroot = callPackage ../tools/X11/hsetroot { };
|
||||||
|
|
||||||
imwheel = callPackage ../tools/X11/imwheel { };
|
imwheel = callPackage ../tools/X11/imwheel { };
|
||||||
|
|
Loading…
Reference in a new issue