3
0
Fork 0
forked from mirrors/nixpkgs

gnome-mahjongg: init at 3.16.1

This commit is contained in:
Jascha Geerds 2015-08-13 13:21:50 +02:00
parent 5f3dca9303
commit e9d2426d9b
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 gnome-chess gnome-klotski
four-in-a-row gnome-chess gnome-klotski gnome-mahjongg
];
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
@ -307,6 +307,8 @@ let
gnome-klotski = callPackage ./games/gnome-klotski { };
gnome-mahjongg = callPackage ./games/gnome-mahjongg { };
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 = "gnome-mahjongg-${gnome3.version}.1";
src = fetchurl {
url = "mirror://gnome/sources/gnome-mahjongg/${gnome3.version}/${name}.tar.xz";
sha256 = "1jbd3gbmxqf36as9xsiarad575l4rpcfv6w1pn192r02aj3hgipj";
};
buildInputs = [
pkgconfig gtk3 wrapGAppsHook librsvg intltool itstool libxml2
hicolor_icon_theme
];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Mahjongg;
description = "Disassemble a pile of tiles by removing matching pairs";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}