nixpkgs/pkgs/games/cutemaze/default.nix

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

47 lines
943 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, cmake
, qttools
, wrapQtAppsHook
, qtbase
, qtwayland
, qtsvg
}:
2017-12-13 21:01:45 +00:00
stdenv.mkDerivation rec {
pname = "cutemaze";
version = "1.3.2";
2017-12-13 21:01:45 +00:00
src = fetchurl {
url = "https://gottcode.org/cutemaze/${pname}-${version}.tar.bz2";
hash = "sha256-hjDlY18O+VDJR68vwrIZwsQAa40xU+V3bCAA4GFHJEQ=";
2017-12-13 21:01:45 +00:00
};
nativeBuildInputs = [
cmake
qttools
wrapQtAppsHook
];
2017-12-13 21:01:45 +00:00
buildInputs = [
qtbase
qtwayland
qtsvg
];
2017-12-13 21:01:45 +00:00
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; {
changelog = "https://github.com/gottcode/cutemaze/blob/v${version}/ChangeLog";
2017-12-13 21:01:45 +00:00
description = "Simple, top-down game in which mazes are randomly generated";
homepage = "https://gottcode.org/cutemaze/";
2017-12-13 21:01:45 +00:00
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
};
}