commit
81f9ddb449
57
pkgs/games/jfsw/default.nix
Normal file
57
pkgs/games/jfsw/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
})
|
@ -37411,6 +37411,8 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jfsw = callPackage ../games/jfsw { };
|
||||||
|
|
||||||
katago = callPackage ../games/katago { };
|
katago = callPackage ../games/katago { };
|
||||||
|
|
||||||
katagoWithCuda = katago.override {
|
katagoWithCuda = katago.override {
|
||||||
|
Loading…
Reference in New Issue
Block a user