nixpkgs/pkgs/games/cutemaze/default.nix

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

54 lines
1.1 KiB
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.3";
2017-12-13 21:01:45 +00:00
src = fetchurl {
url = "https://gottcode.org/cutemaze/cutemaze-${version}.tar.bz2";
hash = "sha256-WvbeA1zgaGx5Hw5JeYrYX72MJw3Ou1VnAbB6R6Y0Rpw=";
2017-12-13 21:01:45 +00:00
};
nativeBuildInputs = [
cmake
qttools
wrapQtAppsHook
];
2017-12-13 21:01:45 +00:00
buildInputs = [
qtbase
qtsvg
2023-03-16 19:40:09 +00:00
] ++ lib.optionals stdenv.isLinux [
qtwayland
];
2017-12-13 21:01:45 +00:00
2023-03-16 19:40:09 +00:00
installPhase = if stdenv.isDarwin then ''
runHook preInstall
2017-12-14 12:05:09 +00:00
mkdir -p $out/Applications
mv CuteMaze.app $out/Applications
2023-03-16 19:40:09 +00:00
makeWrapper $out/Applications/CuteMaze.app/Contents/MacOS/CuteMaze $out/bin/cutemaze
runHook postInstall
'' else null;
2017-12-14 12:05:09 +00:00
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";
mainProgram = "cutemaze";
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
};
}