tali: init at 3.16.1

This commit is contained in:
Luca Bruno 2015-07-29 15:24:41 +00:00
parent 4ce9e12142
commit da6193ad4b
2 changed files with 27 additions and 1 deletions

View File

@ -34,7 +34,7 @@ let
];
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
quadrapassel
tali quadrapassel
];
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
@ -293,6 +293,8 @@ let
swell-foop = callPackage ./games/swell-foop { };
tali = callPackage ./games/tali { };
quadrapassel = callPackage ./games/quadrapassel { };
#### Misc -- other packages on http://ftp.gnome.org/pub/GNOME/sources/

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf
, librsvg, intltool, itstool, libxml2, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "tali-${gnome3.version}.1";
src = fetchurl {
url = "mirror://gnome/sources/tali/${gnome3.version}/${name}.tar.xz";
sha256 = "10cfgxiqg38z5ngkiznglxjgm1552mjvfw4bjhjic0yi5cvdr6dg";
};
buildInputs = [ pkgconfig gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg
libxml2 itstool intltool wrapGAppsHook ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Tali;
description = "Sort of poker with dice and less money";
maintainers = with maintainers; [ lethalman ];
license = licenses.gpl2;
platforms = platforms.linux;
};
}