2022-05-23 21:00:20 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, cmake
|
|
|
|
, qttools
|
|
|
|
, wrapQtAppsHook
|
2022-05-27 13:42:16 +00:00
|
|
|
, qtbase
|
|
|
|
, qtwayland
|
2022-05-23 21:00:20 +00:00
|
|
|
, qtsvg
|
|
|
|
}:
|
2017-12-13 21:01:45 +00:00
|
|
|
|
2022-05-23 21:00:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "cutemaze";
|
2024-01-16 19:33:00 +00:00
|
|
|
version = "1.3.3";
|
2017-12-13 21:01:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-16 19:33:00 +00:00
|
|
|
url = "https://gottcode.org/cutemaze/cutemaze-${version}.tar.bz2";
|
|
|
|
hash = "sha256-WvbeA1zgaGx5Hw5JeYrYX72MJw3Ou1VnAbB6R6Y0Rpw=";
|
2017-12-13 21:01:45 +00:00
|
|
|
};
|
|
|
|
|
2022-05-23 21:00:20 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
qttools
|
|
|
|
wrapQtAppsHook
|
|
|
|
];
|
2017-12-13 21:01:45 +00:00
|
|
|
|
2022-05-27 13:42:16 +00:00
|
|
|
buildInputs = [
|
|
|
|
qtbase
|
|
|
|
qtsvg
|
2023-03-16 19:40:09 +00:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
|
|
qtwayland
|
2022-05-27 13:42:16 +00:00
|
|
|
];
|
2017-12-13 21:01:45 +00:00
|
|
|
|
2023-03-16 19:40:09 +00:00
|
|
|
installPhase = if stdenv.hostPlatform.isDarwin then ''
|
|
|
|
runHook preInstall
|
|
|
|
|
2017-12-14 12:05:09 +00:00
|
|
|
mkdir -p $out/Applications
|
|
|
|
mv CuteMaze.app $out/Applications
|
2023-03-16 19:40:09 +00:00
|
|
|
makeWrapper $out/Applications/CuteMaze.app/Contents/MacOS/CuteMaze $out/bin/cutemaze
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'' else null;
|
2017-12-14 12:05:09 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2023-01-12 03:44:50 +00:00
|
|
|
changelog = "https://github.com/gottcode/cutemaze/blob/v${version}/ChangeLog";
|
2017-12-13 21:01:45 +00:00
|
|
|
description = "Simple, top-down game in which mazes are randomly generated";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "cutemaze";
|
2023-01-12 03:44:50 +00:00
|
|
|
homepage = "https://gottcode.org/cutemaze/";
|
2017-12-13 21:01:45 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2017-12-14 12:05:09 +00:00
|
|
|
platforms = platforms.unix;
|
2017-12-13 21:01:45 +00:00
|
|
|
};
|
|
|
|
}
|