gnome-taquin: init at 3.16.1

This commit is contained in:
Jascha Geerds 2015-08-13 16:22:19 +02:00
parent 3b95ae79cd
commit 014d6583e7
2 changed files with 28 additions and 1 deletions

View file

@ -37,7 +37,7 @@ let
tali quadrapassel gnome-sudoku aisleriot five-or-more tali quadrapassel gnome-sudoku aisleriot five-or-more
four-in-a-row gnome-chess gnome-klotski gnome-mahjongg four-in-a-row gnome-chess gnome-klotski gnome-mahjongg
gnome-mines gnome-nibbles gnome-robots gnome-tetravex gnome-mines gnome-nibbles gnome-robots gnome-tetravex
hitori hitori gnome-taquin
]; ];
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra; inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
@ -321,6 +321,8 @@ let
gnome-sudoku = callPackage ./games/gnome-sudoku { }; gnome-sudoku = callPackage ./games/gnome-sudoku { };
gnome-taquin = callPackage ./games/gnome-taquin { };
gnome-tetravex = callPackage ./games/gnome-tetravex { }; gnome-tetravex = callPackage ./games/gnome-tetravex { };
hitori = callPackage ./games/hitori { }; hitori = callPackage ./games/hitori { };

View file

@ -0,0 +1,25 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, librsvg, libcanberra_gtk3, intltool, itstool, libxml2
, hicolor_icon_theme }:
stdenv.mkDerivation rec {
name = "gnome-taquin-${gnome3.version}.1";
src = fetchurl {
url = "mirror://gnome/sources/gnome-taquin/${gnome3.version}/${name}.tar.xz";
sha256 = "024a1ing1iclmyhi5vlps6xna84vgy7s098h9yvzq43fsahmx8pi";
};
buildInputs = [
pkgconfig gtk3 wrapGAppsHook librsvg libcanberra_gtk3
intltool itstool libxml2 hicolor_icon_theme
];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Taquin;
description = "Move tiles so that they reach their places";
maintainers = gnome3.maintainers;
license = licenses.gpl3;
platforms = platforms.linux;
};
}