gnome-chess: init at 3.16.2

This commit is contained in:
Jascha Geerds 2015-08-13 12:46:36 +02:00
parent 106837a449
commit ab4d1e3bb3
2 changed files with 27 additions and 1 deletions

View File

@ -35,7 +35,7 @@ let
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
tali quadrapassel gnome-sudoku aisleriot five-or-more
four-in-a-row
four-in-a-row gnome-chess
];
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
@ -303,6 +303,8 @@ let
four-in-a-row = callPackage ./games/four-in-a-row { };
gnome-chess = callPackage ./games/gnome-chess { };
gnome-sudoku = callPackage ./games/gnome-sudoku { };
iagno = callPackage ./games/iagno { };

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, intltool, itstool, librsvg, libxml2, hicolor_icon_theme }:
stdenv.mkDerivation rec {
name = "gnome-chess-${gnome3.version}.2";
src = fetchurl {
url = "mirror://gnome/sources/gnome-chess/${gnome3.version}/${name}.tar.xz";
sha256 = "0j1vvf1myki3bafsqv52q59qk1nhf1636nrb15fpfvm88p3b8wwg";
};
buildInputs = [
pkgconfig gtk3 wrapGAppsHook intltool itstool librsvg libxml2
hicolor_icon_theme
];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Chess;
description = "Play the classic two-player boardgame of chess";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}