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
59 lines
997 B
Nix
59 lines
997 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
which,
|
|
SDL2,
|
|
perl,
|
|
pkg-config,
|
|
wrapGAppsHook3,
|
|
gtk3,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "jfsw";
|
|
version = "20240303";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jonof";
|
|
repo = "jfsw";
|
|
tag = finalAttrs.version;
|
|
fetchSubmodules = true;
|
|
hash = "sha256-bOUgRa9zWufTFEj5huXAKeRerV8PqfqQVDoVUvRrj2I=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
which
|
|
SDL2
|
|
perl
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
gtk3
|
|
];
|
|
|
|
strictDeps = true;
|
|
enableParallelBuilding = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 sw -t $out/bin
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Modern port the original Shadow Warrior";
|
|
homepage = "http://www.jonof.id.au/jfsw/";
|
|
license = lib.licenses.gpl2Plus;
|
|
mainProgram = "sw";
|
|
maintainers = with lib.maintainers; [ moody ];
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
inherit (SDL2.meta) platforms;
|
|
};
|
|
})
|