2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, qmake, qttools, qtsvg, mkDerivation }:
|
2017-12-13 21:01:45 +00:00
|
|
|
|
2019-08-18 09:14:38 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cutemaze";
|
2021-05-06 23:49:49 +01:00
|
|
|
version = "1.3.0";
|
2017-12-13 21:01:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://gottcode.org/cutemaze/${pname}-${version}-src.tar.bz2";
|
2021-05-06 23:49:49 +01:00
|
|
|
sha256 = "sha256-h7+H2E37ZVSnlPa6ID+lNEvFtU5PfdMSlBjqBumojoU=";
|
2017-12-13 21:01:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ qmake qttools ];
|
|
|
|
|
|
|
|
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 02:11:51 +01: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
|
|
|
};
|
|
|
|
}
|