nixpkgs/pkgs/games/cutemaze/default.nix

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

46 lines
879 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.1";
2017-12-13 21:01:45 +00:00
src = fetchurl {
url = "https://gottcode.org/cutemaze/${pname}-${version}-src.tar.bz2";
sha256 = "6944931cd39e9ef202c11483b7b2b7409a068c52fa5fd4419ff938b1158c72ab";
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; {
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
};
}