Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

57 lines
1.1 KiB
Nix

{
lib,
mkDerivation,
fetchFromGitHub,
cmake,
qttools,
wrapQtAppsHook,
qtbase,
qtsvg,
}:
mkDerivation rec {
pname = "tbe";
version = "0.9.3.1";
src = fetchFromGitHub {
owner = "kaa-ching";
repo = "tbe";
tag = "v${version}";
sha256 = "1ag2cp346f9bz9qy6za6q54id44d2ypvkyhvnjha14qzzapwaysj";
};
postPatch = ''
sed '1i#include <vector>' -i src/model/World.h
# 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;
installPhase = ''
make DESTDIR=.. install
mkdir -p $out/bin
cp ../usr/games/tbe $out/bin
cp -r ../usr/share $out/
'';
meta = with lib; {
description = "Physics-based game vaguely similar to Incredible Machine";
mainProgram = "tbe";
homepage = "http://the-butterfly-effect.org/";
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
license = licenses.gpl2Only;
};
}