nixpkgs/pkgs/games/cutemaze/default.nix

29 lines
771 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, qmake, qttools, qtsvg, mkDerivation }:
2017-12-13 21:01:45 +00:00
2019-08-18 08:14:38 +00:00
mkDerivation rec {
pname = "cutemaze";
2020-05-04 18:42:11 +00:00
version = "1.2.6";
2017-12-13 21:01:45 +00:00
src = fetchurl {
url = "https://gottcode.org/cutemaze/${pname}-${version}-src.tar.bz2";
2020-05-04 18:42:11 +00:00
sha256 = "0pw31j2i3ifndikhz9w684ia00r8zvcgnb66ign9w4lgs1zjgcrw";
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
'';
meta = with lib; {
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
};
}