2023-06-20 07:50:12 +00:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, qttools, wrapQtAppsHook, qtbase, qtsvg }:
|
2010-12-17 15:41:30 +00:00
|
|
|
|
2020-05-09 09:59:13 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "tbe";
|
2016-06-19 14:08:40 +00:00
|
|
|
version = "0.9.3.1";
|
2010-12-17 15:41:30 +00:00
|
|
|
|
2020-11-01 22:39:49 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kaa-ching";
|
|
|
|
repo = pname;
|
2016-06-19 14:08:40 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "1ag2cp346f9bz9qy6za6q54id44d2ypvkyhvnjha14qzzapwaysj";
|
2015-12-29 15:24:48 +00:00
|
|
|
};
|
2010-12-17 15:41:30 +00:00
|
|
|
|
2023-06-20 07:50:12 +00:00
|
|
|
postPatch = ''
|
|
|
|
sed '1i#include <vector>' -i src/model/World.h
|
2016-06-19 08:18:30 +00:00
|
|
|
|
2023-06-20 07:50:12 +00: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 08:18:30 +00:00
|
|
|
|
2015-12-29 15:24:48 +00:00
|
|
|
installPhase = ''
|
|
|
|
make DESTDIR=.. install
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp ../usr/games/tbe $out/bin
|
|
|
|
cp -r ../usr/share $out/
|
2010-12-17 15:41:30 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2010-12-17 15:41:30 +00:00
|
|
|
description = "Physics-based game vaguely similar to Incredible Machine";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "tbe";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://the-butterfly-effect.org/";
|
2015-12-29 15:24:48 +00:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
2024-07-03 09:37:36 +00:00
|
|
|
license = licenses.gpl2Only;
|
2010-12-17 15:41:30 +00:00
|
|
|
};
|
2015-12-29 15:24:48 +00:00
|
|
|
}
|