about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/toppler/default.nix
blob: fe36229363ceb05989a998323cb990d209d6dda5 (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
58
59
60
61
{ lib
, stdenv
, fetchFromGitLab

, pkg-config
, gettext
, povray
, imagemagick
, gimp

, SDL2
, SDL2_mixer
, SDL2_image
, libpng
, zlib
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "toppler";
  version = "1.3";

  src = fetchFromGitLab {
    owner = "roever";
    repo = "toppler";
    rev = "v${finalAttrs.version}";
    sha256 = "sha256-ecEaELu52Nmov/BD9VzcUw6wyWeHJcsKQkEzTnaW330=";
  };

  nativeBuildInputs = [
    pkg-config
    gettext
    povray
    imagemagick
    gimp
  ];

  buildInputs = [
    SDL2
    SDL2_mixer
    SDL2_image
    libpng
    zlib
  ];

  # GIMP needs a writable home
  preBuild = ''
    export HOME=$(mktemp -d)
  '';

  makeFlags = [ "PREFIX=$(out)" ];

  hardeningDisable = [ "format" ];

  meta = with lib; {
    description = "Jump and run game, reimplementation of Tower Toppler/Nebulus";
    homepage = "https://gitlab.com/roever/toppler";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ fgaz ];
    platforms = platforms.all;
  };
})