2023-06-20 09:50:12 +02:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, qttools, wrapQtAppsHook, qtbase, qtsvg }:
|
2010-12-17 16:41:30 +01:00
|
|
|
|
2020-05-09 11:59:13 +02:00
|
|
|
mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "tbe";
|
2016-06-19 16:08:40 +02:00
|
|
|
version = "0.9.3.1";
|
2010-12-17 16:41:30 +01:00
|
|
|
|
2020-11-01 23:39:49 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kaa-ching";
|
|
|
|
repo = pname;
|
2016-06-19 16:08:40 +02:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "1ag2cp346f9bz9qy6za6q54id44d2ypvkyhvnjha14qzzapwaysj";
|
2015-12-29 16:24:48 +01:00
|
|
|
};
|
2010-12-17 16:41:30 +01:00
|
|
|
|
2023-06-20 09:50:12 +02:00
|
|
|
postPatch = ''
|
|
|
|
sed '1i#include <vector>' -i src/model/World.h
|
2016-06-19 10:18:30 +02:00
|
|
|
|
2023-06-20 09:50:12 +02:00
|
|
|
# fix translations not building: https://gitlab.kitware.com/cmake/cmake/-/issues/21931
|
|
|
|
substituteInPlace i18n/CMakeLists.txt --replace qt5_create_translation qt_add_translation
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake qttools wrapQtAppsHook ];
|
|
|
|
buildInputs = [ qtbase qtsvg ];
|
|
|
|
strictDeps = true;
|
2016-06-19 10:18:30 +02:00
|
|
|
|
2015-12-29 16:24:48 +01:00
|
|
|
installPhase = ''
|
|
|
|
make DESTDIR=.. install
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp ../usr/games/tbe $out/bin
|
|
|
|
cp -r ../usr/share $out/
|
2010-12-17 16:41:30 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2010-12-17 16:41:30 +01:00
|
|
|
description = "A physics-based game vaguely similar to Incredible Machine";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://the-butterfly-effect.org/";
|
2015-12-29 16:24:48 +01:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2010-12-17 16:41:30 +01:00
|
|
|
};
|
2015-12-29 16:24:48 +01:00
|
|
|
}
|