nixpkgs/pkgs/games/gnonograms/default.nix

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

68 lines
1.2 KiB
Nix
Raw Normal View History

2021-05-11 22:51:15 +03:00
{ lib
, stdenv
, fetchFromGitHub
, vala
, meson
, ninja
, pkg-config
, desktop-file-utils
, appstream
, python3
, shared-mime-info
, wrapGAppsHook3
2021-05-11 22:51:15 +03:00
, gtk3
, pantheon
, libgee
2021-12-09 12:22:30 +03:00
, libhandy
2021-05-11 22:51:15 +03:00
}:
2024-02-19 18:30:04 +03:00
stdenv.mkDerivation (finalAttrs: {
2021-05-11 22:51:15 +03:00
pname = "gnonograms";
2022-06-20 23:17:55 +03:00
version = "2.1.2";
2021-05-11 22:51:15 +03:00
src = fetchFromGitHub {
owner = "jeremypw";
repo = "gnonograms";
2024-02-19 18:30:04 +03:00
rev = "v${finalAttrs.version}";
2022-06-20 23:17:55 +03:00
sha256 = "sha256-TkEVjrwlr4Q5FsfcdY+9fxwaMq+DFs0RwGI2E+GT5Mk=";
2021-05-11 22:51:15 +03:00
};
postPatch = ''
patchShebangs meson/post_install.py
'';
nativeBuildInputs = [
vala
meson
ninja
pkg-config
desktop-file-utils
appstream
python3
shared-mime-info
wrapGAppsHook3
2021-05-11 22:51:15 +03:00
];
buildInputs = [
gtk3
pantheon.granite
libgee
2021-12-09 12:22:30 +03:00
libhandy
2021-05-11 22:51:15 +03:00
];
meta = with lib; {
description = "Nonograms puzzle game";
mainProgram = "com.github.jeremypw.gnonograms";
2021-05-11 22:51:15 +03:00
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;
};
2024-02-19 18:30:04 +03:00
})