about summary refs log tree commit diff
path: root/pkgs/games/tworld2/default.nix
blob: 158d494fb32d87b4ef796359312bc7b5384bf2a5 (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
{ stdenv
, lib
, fetchurl
, SDL
, qt4
}:

stdenv.mkDerivation rec {
  pname = "tworld2";
  version = "2.2.0";

  src = fetchurl {
    url = "https://tw2.bitbusters.club/downloads/tworld-${version}-src.tar.gz";
    hash = "sha256-USy2F4es0W3xT4aI254OQ02asJKNt3V0Y72LCbXYpfg=";
  };

  buildInputs = [ SDL qt4 ];

  enableParallelBuilding = true;

  postConfigure = ''
    echo "#define COMPILE_TIME \"$(date -ud "@$SOURCE_DATE_EPOCH" '+%Y %b %e %T %Z')\"" >comptime.h
  '';

  makeFlags = [
    "bindir=${placeholder "out"}/bin"
    "sharedir=${placeholder "out"}/share"
    "mandir=${placeholder "out"}/share/man/en"
  ];

  postInstall = ''
    mkdir -p $out/share/doc/${pname}
    cp COPYING README docs/tworld2.html $out/share/doc/${pname}

    mkdir $out/share/icons
    cp tworld.ico tworld2.ico $out/share/icons
  '';

  meta = with lib; {
    homepage = "https://tw2.bitbusters.club/";
    description = "Tile World 2: Tile World is a reimplementation of the game Chip's Challenge";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ drperceptron ];
    platforms = platforms.linux;
  };
}