gnome3.hitori: init at 3.16.1

This commit is contained in:
Jascha Geerds 2015-08-13 15:09:41 +02:00
parent 2d94468b2b
commit 0eb925465d
2 changed files with 27 additions and 0 deletions

View file

@ -37,6 +37,7 @@ let
tali quadrapassel gnome-sudoku aisleriot five-or-more
four-in-a-row gnome-chess gnome-klotski gnome-mahjongg
gnome-mines gnome-nibbles gnome-robots gnome-tetravex
hitori
];
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
@ -320,6 +321,8 @@ let
gnome-tetravex = callPackage ./games/gnome-tetravex { };
hitori = callPackage ./games/hitori { };
iagno = callPackage ./games/iagno { };
lightsoff = callPackage ./games/lightsoff { };

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, libxml2, intltool, itstool, hicolor_icon_theme }:
stdenv.mkDerivation rec {
name = "hitori-${gnome3.version}.1";
src = fetchurl {
url = "mirror://gnome/sources/hitori/${gnome3.version}/${name}.tar.xz";
sha256 = "07pm3xl05jgb8x151k1j2ap57dmfvk2nkz9dmqnn5iywfigsysd1";
};
buildInputs = [
pkgconfig gtk3 wrapGAppsHook intltool itstool libxml2
hicolor_icon_theme
];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Hitori;
description = "GTK+ application to generate and let you play games of Hitori";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}