20 lines
603 B
Nix
20 lines
603 B
Nix
|
{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf
|
||
|
, librsvg, intltool, itstool, libxml2, wrapGAppsHook }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
inherit (import ./src.nix fetchurl) name src;
|
||
|
|
||
|
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 = gnome3.maintainers;
|
||
|
license = licenses.gpl2;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|