2022-05-23 21:00:20 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, cmake
|
|
|
|
, qttools
|
|
|
|
, wrapQtAppsHook
|
|
|
|
, 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";
|
2022-05-23 21:00:20 +00:00
|
|
|
version = "1.3.1";
|
2017-12-13 21:01:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://gottcode.org/cutemaze/${pname}-${version}-src.tar.bz2";
|
2022-05-23 21:00:20 +00:00
|
|
|
sha256 = "6944931cd39e9ef202c11483b7b2b7409a068c52fa5fd4419ff938b1158c72ab";
|
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
|
|
|
|
|
|
|
buildInputs = [ qtsvg ];
|
|
|
|
|
2021-01-15 04:31:39 +00:00
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
2017-12-14 12:05:09 +00:00
|
|
|
mkdir -p $out/Applications
|
|
|
|
mv CuteMaze.app $out/Applications
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://gottcode.org/cutemaze/";
|
2017-12-13 21:01:45 +00:00
|
|
|
description = "Simple, top-down game in which mazes are randomly generated";
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|