about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/jfsw/default.nix
blob: 9b631551b57902afc22d7012578443b7d3a956cb (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
, wrapGAppsHook
, 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
    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;
  };
})