mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
jfsw: init at stable-20211225
This commit is contained in:
parent
d287443e67
commit
cd68dbf4c1
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;
|
||||
};
|
||||
})
|
@ -37494,6 +37494,8 @@ with pkgs;
|
||||
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
||||
};
|
||||
|
||||
jfsw = callPackage ../games/jfsw { };
|
||||
|
||||
katago = callPackage ../games/katago { };
|
||||
|
||||
katagoWithCuda = katago.override {
|
||||
|
Loading…
Reference in New Issue
Block a user