gnome3.five-or-more: init at 3.16.1

This commit is contained in:
Jascha Geerds 2015-08-13 09:44:06 +02:00
parent 2f62815520
commit 7dd58b645a
2 changed files with 27 additions and 1 deletions

View File

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

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, librsvg, intltool, itstool, libxml2, hicolor_icon_theme }:
stdenv.mkDerivation rec {
name = "five-or-more-${gnome3.version}.1";
src = fetchurl {
url = "mirror://gnome/sources/five-or-more/${gnome3.version}/${name}.tar.xz";
sha256 = "018723w2q0fijvxs1kafrxg39f6ank6x51nfbf3mhn9q7jz9k2g3";
};
buildInputs = [
pkgconfig gtk3 wrapGAppsHook librsvg intltool itstool libxml2
hicolor_icon_theme
];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Five_or_more;
description = "Remove colored balls from the board by forming lines";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}