mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
23 lines
578 B
Nix
23 lines
578 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|