nixos/wyoming/{faster-whisper,piper}: drop download directory (#376447)
[NixPkgs.git] / pkgs / by-name / hh / hheretic / package.nix
blob86f9b33e8e108f2c243b2ea02b331bc61f0c23c4
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   SDL,
6   SDL_mixer,
7   autoreconfHook,
8   gitUpdater,
9 }:
11 stdenv.mkDerivation (finalAttrs: {
12   pname = "hheretic";
13   version = "0.2.3";
15   src = fetchFromGitHub {
16     owner = "sezero";
17     repo = "hheretic";
18     rev = "hheretic-${finalAttrs.version}";
19     hash = "sha256-e9N869W8STZdLUBSscxEnF2Z+SrdVv8ARDL8AMe1SJ8=";
20   };
22   nativeBuildInputs = [
23     autoreconfHook
24     SDL.dev
25   ];
27   buildInputs = [
28     SDL
29     SDL_mixer
30   ];
32   strictDeps = true;
33   enableParallelBuilding = true;
35   configureFlags = [ "--with-audio=sdlmixer" ];
37   installPhase = ''
38     runHook preInstall
40     install -Dm755 hheretic-gl -t $out/bin
42     runHook postInstall
43   '';
45   passthru.updateScript = gitUpdater {
46     rev-prefix = "hheretic-";
47   };
49   meta = {
50     description = "Linux port of Raven Game's Heretic";
51     homepage = "https://hhexen.sourceforge.net/hhexen.html";
52     license = lib.licenses.gpl2Plus;
53     mainProgram = "hheretic-gl";
54     maintainers = with lib.maintainers; [ moody ];
55     inherit (SDL.meta) platforms;
56     broken = stdenv.hostPlatform.isDarwin;
57   };