2021-05-11 19:51:15 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
vala,
|
|
|
|
meson,
|
|
|
|
ninja,
|
|
|
|
pkg-config,
|
|
|
|
desktop-file-utils,
|
|
|
|
appstream,
|
|
|
|
python3,
|
|
|
|
shared-mime-info,
|
2024-04-26 20:24:03 +00:00
|
|
|
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
|
2024-04-26 20:24:03 +00:00
|
|
|
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";
|
2024-03-19 02:14:51 +00:00
|
|
|
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
|
|
|
})
|