68 lines
1.2 KiB
Nix
68 lines
1.2 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, vala
|
||
|
, meson
|
||
|
, ninja
|
||
|
, pkg-config
|
||
|
, desktop-file-utils
|
||
|
, appstream
|
||
|
, python3
|
||
|
, shared-mime-info
|
||
|
, wrapGAppsHook3
|
||
|
, gtk3
|
||
|
, pantheon
|
||
|
, libgee
|
||
|
, libhandy
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation (finalAttrs: {
|
||
|
pname = "gnonograms";
|
||
|
version = "2.1.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "jeremypw";
|
||
|
repo = "gnonograms";
|
||
|
rev = "v${finalAttrs.version}";
|
||
|
sha256 = "sha256-TkEVjrwlr4Q5FsfcdY+9fxwaMq+DFs0RwGI2E+GT5Mk=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
patchShebangs meson/post_install.py
|
||
|
'';
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
vala
|
||
|
meson
|
||
|
ninja
|
||
|
pkg-config
|
||
|
desktop-file-utils
|
||
|
appstream
|
||
|
python3
|
||
|
shared-mime-info
|
||
|
wrapGAppsHook3
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
gtk3
|
||
|
pantheon.granite
|
||
|
libgee
|
||
|
libhandy
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Nonograms puzzle game";
|
||
|
mainProgram = "com.github.jeremypw.gnonograms";
|
||
|
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;
|
||
|
};
|
||
|
})
|