Files
nixpkgs/pkgs/by-name/hh/hhexen/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

66 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
libGL,
libGLU,
SDL,
SDL_mixer,
autoreconfHook,
gitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hhexen";
version = "1.6.4";
src = fetchFromGitHub {
owner = "sezero";
repo = "hhexen";
rev = "hhexen-${finalAttrs.version}";
hash = "sha256-D1gIdIqb6RN7TA7ezbBhy2Z82TH1quN8kgAMNRHMfhw=";
};
nativeBuildInputs = [
autoreconfHook
(lib.getDev SDL)
];
buildInputs = [
libGL
libGLU
SDL
SDL_mixer
];
strictDeps = true;
enableParallelBuilding = true;
configureFlags = [ "--with-audio=sdlmixer" ];
installPhase = ''
runHook preInstall
install -Dm755 hhexen-gl -t $out/bin
runHook postInstall
'';
passthru.updateScript = gitUpdater {
rev-prefix = "hhexen-";
};
meta = {
description = "Linux port of Raven Game's Hexen";
homepage = "https://hhexen.sourceforge.net/hhexen.html";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
moody
djanatyn
];
mainProgram = "hhexen-gl";
inherit (SDL.meta) platforms;
broken = stdenv.hostPlatform.isDarwin;
};
})