nixpkgs/pkgs/games/tworld2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.1 KiB
Nix
Raw Normal View History

2021-12-21 22:49:33 +01:00
{ stdenv
, lib
, fetchurl
, SDL
2022-06-09 03:30:15 +02:00
, qt4
2021-12-21 22:49:33 +01:00
}:
stdenv.mkDerivation rec {
pname = "tworld2";
version = "2.2.0";
src = fetchurl {
url = "https://tw2.bitbusters.club/downloads/tworld-${version}-src.tar.gz";
2022-06-09 03:30:15 +02:00
hash = "sha256-USy2F4es0W3xT4aI254OQ02asJKNt3V0Y72LCbXYpfg=";
2021-12-21 22:49:33 +01:00
};
2022-06-09 03:30:15 +02:00
buildInputs = [ SDL qt4 ];
2021-12-21 22:49:33 +01:00
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/";
2022-06-09 03:30:15 +02:00
description = "Tile World 2: Tile World is a reimplementation of the game Chip's Challenge";
2021-12-21 22:49:33 +01:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ drperceptron ];
2022-06-09 03:30:15 +02:00
platforms = platforms.linux;
2021-12-21 22:49:33 +01:00
};
}