depot/third_party/nixpkgs/pkgs/games/hhexen/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

22 lines
580 B
Nix

{ lib, fetchurl, SDL, stdenv }:
stdenv.mkDerivation rec {
pname = "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 = "https://hhexen.sourceforge.net/hhexen.html";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ djanatyn ];
};
}