nixpkgs/pkgs/by-name/gn/gnonograms/package.nix

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

69 lines
1.3 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,
wrapGAppsHook3,
2021-05-11 19:51:15 +00:00
gtk3,
pantheon,
libgee,
2021-12-09 09:22:30 +00:00
libhandy,
2021-05-11 19:51:15 +00:00
}:
2024-02-19 15:30:04 +00:00
stdenv.mkDerivation (finalAttrs: {
2021-05-11 19:51:15 +00:00
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";
2024-02-19 15:30:04 +00:00
rev = "v${finalAttrs.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
wrapGAppsHook3
2021-05-11 19:51:15 +00:00
];
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";
mainProgram = "com.github.jeremypw.gnonograms";
2021-05-11 19:51:15 +00: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 15:30:04 +00:00
})