summary refs log tree commit diff
path: root/pkgs/games/cutemaze/default.nix
blob: 24077697218dbf992fdc3214df453bf82ec6c730 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchurl, qmake, qttools, qtsvg, mkDerivation }:

mkDerivation rec {
  pname = "cutemaze";
  version = "1.2.5";

  src = fetchurl {
    url = "https://gottcode.org/cutemaze/${pname}-${version}-src.tar.bz2";
    sha256 = "1xrjv3h1bpbji1dl9hkcvmp6qk4j618saffl41455vhrzn170lrj";
  };

  nativeBuildInputs = [ qmake qttools ];

  buildInputs = [ qtsvg ];

  postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
    mkdir -p $out/Applications
    mv CuteMaze.app $out/Applications
  '';

  meta = with stdenv.lib; {
    homepage = https://gottcode.org/cutemaze/;
    description = "Simple, top-down game in which mazes are randomly generated";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ dotlambda ];
    platforms = platforms.unix;
  };
}