nixpkgs/pkgs/games/cutemaze/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
770 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";
2021-05-06 22:49:49 +00:00
version = "1.3.0";
2017-12-13 21:01:45 +00:00
src = fetchurl {
url = "https://gottcode.org/cutemaze/${pname}-${version}-src.tar.bz2";
2021-05-06 22:49:49 +00: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
'';
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
};
}