gnome3.four-in-a-row: init at 3.16.2

This commit is contained in:
Jascha Geerds 2015-08-13 12:37:28 +02:00
parent 6440e9bbfd
commit 106837a449
2 changed files with 28 additions and 0 deletions

View File

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

View File

@ -0,0 +1,25 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, intltool, itstool, libcanberra_gtk3, librsvg, libxml2
, hicolor_icon_theme }:
stdenv.mkDerivation rec {
name = "four-in-a-row-${gnome3.version}.2";
src = fetchurl {
url = "mirror://gnome/sources/four-in-a-row/${gnome3.version}/${name}.tar.xz";
sha256 = "1bm5chsvpw0jg1xh9g2n1w5i0fvxs50aqkgmrla9cpawsvzfshmz";
};
buildInputs = [
pkgconfig gtk3 wrapGAppsHook intltool itstool libcanberra_gtk3 librsvg
libxml2 hicolor_icon_theme
];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Four-in-a-row;
description = "Make lines of the same color to win";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}