Merge pull request #245647 from majiru/jfsw

jfsw: init at 20211225
This commit is contained in:
Martin Weinelt 2023-07-29 14:03:50 +02:00 committed by GitHub
commit 81f9ddb449
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,57 @@
{ lib
, stdenv
, fetchFromGitHub
, which
, SDL2
, perl
, pkg-config
, wrapGAppsHook
, gtk3
}:
stdenv.mkDerivation (finalAttrs: {
pname = "jfsw";
version = "20211225";
src = fetchFromGitHub {
owner = "jonof";
repo = "jfsw";
rev = "refs/tags/${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-oRJHVsVo+KQfJyd8TcPxTMPPi993qxQb0wnD9nR4vJY=";
};
nativeBuildInputs = [
which
SDL2
perl
pkg-config
wrapGAppsHook
];
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.isDarwin;
inherit (SDL2.meta) platforms;
};
})

View File

@ -37411,6 +37411,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
};
jfsw = callPackage ../games/jfsw { };
katago = callPackage ../games/katago { };
katagoWithCuda = katago.override {