mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
Merge pull request #122625 from fgaz/gnonograms/init
gnonograms: init at 1.4.5
This commit is contained in:
commit
9c5cc97cf3
64
pkgs/games/gnonograms/default.nix
Normal file
64
pkgs/games/gnonograms/default.nix
Normal file
@ -0,0 +1,64 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, vala
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, desktop-file-utils
|
||||
, appstream
|
||||
, python3
|
||||
, shared-mime-info
|
||||
, wrapGAppsHook
|
||||
, gtk3
|
||||
, pantheon
|
||||
, libgee
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gnonograms";
|
||||
version = "1.4.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jeremypw";
|
||||
repo = "gnonograms";
|
||||
rev = "v${version}";
|
||||
sha256 = "1ly3inp6dvjrixdysz5hdfwlhbs49ks0lf8062z2iq6gaf8ivkb2";
|
||||
};
|
||||
|
||||
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
|
||||
];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -29005,6 +29005,8 @@ in
|
||||
|
||||
gmad = callPackage ../games/gmad { };
|
||||
|
||||
gnonograms = callPackage ../games/gnonograms { };
|
||||
|
||||
gnubg = callPackage ../games/gnubg { };
|
||||
|
||||
gnuchess = callPackage ../games/gnuchess { };
|
||||
|
Loading…
Reference in New Issue
Block a user