tali: init at 3.16.1
This commit is contained in:
parent
4ce9e12142
commit
da6193ad4b
@ -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/
|
||||
|
24
pkgs/desktops/gnome-3/3.16/games/tali/default.nix
Normal file
24
pkgs/desktops/gnome-3/3.16/games/tali/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user