nixpkgs/pkgs/games/gnonograms/default.nix

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

67 lines
1.2 KiB
Nix
Raw Normal View History

2021-05-11 19:51:15 +00:00
{ lib
, stdenv
, fetchFromGitHub
, vala
, meson
, ninja
, pkg-config
, desktop-file-utils
, appstream
, python3
, shared-mime-info
, wrapGAppsHook
, gtk3
, pantheon
, libgee
2021-12-09 09:22:30 +00:00
, libhandy
2021-05-11 19:51:15 +00:00
}:
stdenv.mkDerivation rec {
pname = "gnonograms";
2022-06-20 20:17:55 +00:00
version = "2.1.2";
2021-05-11 19:51:15 +00:00
src = fetchFromGitHub {
owner = "jeremypw";
repo = "gnonograms";
rev = "v${version}";
2022-06-20 20:17:55 +00:00
sha256 = "sha256-TkEVjrwlr4Q5FsfcdY+9fxwaMq+DFs0RwGI2E+GT5Mk=";
2021-05-11 19:51:15 +00:00
};
postPatch = ''
patchShebangs meson/post_install.py
'';
nativeBuildInputs = [
vala
meson
ninja
pkg-config
desktop-file-utils
appstream
python3
shared-mime-info
wrapGAppsHook
];
buildInputs = [
gtk3
pantheon.granite
libgee
2021-12-09 09:22:30 +00:00
libhandy
2021-05-11 19:51:15 +00:00
];
meta = with lib; {
description = "Nonograms puzzle game";
longDescription = ''
An implementation of the Japanese logic puzzle "Nonograms" written in
Vala, allowing the user to:
* Draw puzzles
* Generate random puzzles of chosen difficulty
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ fgaz ];
homepage = "https://github.com/jeremypw/gnonograms";
platforms = platforms.all;
};
}