gnome-sudoku: init at 3.16.0
This commit is contained in:
@@ -34,7 +34,7 @@ let
|
|||||||
];
|
];
|
||||||
|
|
||||||
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
|
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
|
||||||
tali quadrapassel
|
tali quadrapassel gnome-sudoku
|
||||||
];
|
];
|
||||||
|
|
||||||
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
||||||
@@ -296,6 +296,8 @@ let
|
|||||||
|
|
||||||
#### Games
|
#### Games
|
||||||
|
|
||||||
|
gnome-sudoku = callPackage ./games/gnome-sudoku { };
|
||||||
|
|
||||||
iagno = callPackage ./games/iagno { };
|
iagno = callPackage ./games/iagno { };
|
||||||
|
|
||||||
lightsoff = callPackage ./games/lightsoff { };
|
lightsoff = callPackage ./games/lightsoff { };
|
||||||
|
|||||||
@@ -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;
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user