nixpkgs/pkgs/by-name/hh/hheretic/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

58 lines
1.1 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, SDL
, SDL_mixer
, autoreconfHook
, gitUpdater
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hheretic";
version = "0.2.3";
src = fetchFromGitHub {
owner = "sezero";
repo = "hheretic";
rev = "hheretic-${finalAttrs.version}";
hash = "sha256-e9N869W8STZdLUBSscxEnF2Z+SrdVv8ARDL8AMe1SJ8=";
};
nativeBuildInputs = [
autoreconfHook
SDL.dev
];
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;
};
})