depot/third_party/nixpkgs/pkgs/by-name/hh/hheretic/package.nix

58 lines
1.1 KiB
Nix

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