2022-05-23 23:00:20 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, cmake
|
|
|
|
, qttools
|
|
|
|
, wrapQtAppsHook
|
2022-05-27 15:42:16 +02:00
|
|
|
, qtbase
|
|
|
|
, qtwayland
|
2022-05-23 23:00:20 +02:00
|
|
|
, qtsvg
|
|
|
|
}:
|
2017-12-13 22:01:45 +01:00
|
|
|
|
2022-05-23 23:00:20 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "cutemaze";
|
2023-01-12 04:44:50 +01:00
|
|
|
version = "1.3.2";
|
2017-12-13 22:01:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-01-12 04:44:50 +01:00
|
|
|
url = "https://gottcode.org/cutemaze/${pname}-${version}.tar.bz2";
|
|
|
|
hash = "sha256-hjDlY18O+VDJR68vwrIZwsQAa40xU+V3bCAA4GFHJEQ=";
|
2017-12-13 22:01:45 +01:00
|
|
|
};
|
|
|
|
|
2022-05-23 23:00:20 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
qttools
|
|
|
|
wrapQtAppsHook
|
|
|
|
];
|
2017-12-13 22:01:45 +01:00
|
|
|
|
2022-05-27 15:42:16 +02:00
|
|
|
buildInputs = [
|
|
|
|
qtbase
|
|
|
|
qtwayland
|
|
|
|
qtsvg
|
|
|
|
];
|
2017-12-13 22:01:45 +01:00
|
|
|
|
2021-01-15 05:31:39 +01:00
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
2017-12-14 13:05:09 +01:00
|
|
|
mkdir -p $out/Applications
|
|
|
|
mv CuteMaze.app $out/Applications
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2023-01-12 04:44:50 +01:00
|
|
|
changelog = "https://github.com/gottcode/cutemaze/blob/v${version}/ChangeLog";
|
2017-12-13 22:01:45 +01:00
|
|
|
description = "Simple, top-down game in which mazes are randomly generated";
|
2023-01-12 04:44:50 +01:00
|
|
|
homepage = "https://gottcode.org/cutemaze/";
|
2017-12-13 22:01:45 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2017-12-14 13:05:09 +01:00
|
|
|
platforms = platforms.unix;
|
2017-12-13 22:01:45 +01:00
|
|
|
};
|
|
|
|
}
|