gnome-sudoku: init at 3.16.0

This commit is contained in:
Jascha Geerds 2015-08-12 17:33:29 +02:00
parent acd7ec8c22
commit 214c26bfa1
2 changed files with 25 additions and 1 deletions

View file

@ -34,7 +34,7 @@ let
];
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
tali quadrapassel
tali quadrapassel gnome-sudoku
];
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
@ -296,6 +296,8 @@ let
#### Games
gnome-sudoku = callPackage ./games/gnome-sudoku { };
iagno = callPackage ./games/iagno { };
lightsoff = callPackage ./games/lightsoff { };

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, gnome3, wrapGAppsHook
, json_glib, qqwing, itstool, libxml2 }:
stdenv.mkDerivation rec {
name = "gnome-sudoku-${gnome3.version}.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-sudoku/${gnome3.version}/${name}.tar.xz";
sha256 = "1b9xwldzjjpkwb2na9cbs8z4gv8dlj9dm574gybdz466190lrsxv";
};
buildInputs = [ pkgconfig intltool wrapGAppsHook gtk3 gnome3.libgee
json_glib qqwing itstool libxml2 ];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Sudoku;
description = "Test your logic skills in this number grid puzzle";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}