blob: ed82964e4d0eb74e29d289ec51fd74f9f1f3e703 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{ lib
, stdenv
, fetchFromGitHub
, which
, SDL2
, perl
, pkg-config
, wrapGAppsHook3
, gtk3
}:
stdenv.mkDerivation (finalAttrs: {
pname = "jfsw";
version = "20240303";
src = fetchFromGitHub {
owner = "jonof";
repo = "jfsw";
rev = "refs/tags/${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.isDarwin;
inherit (SDL2.meta) platforms;
};
})
|