21 lines
630 B
Nix
21 lines
630 B
Nix
{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf
|
|
, librsvg, intltool, itstool, libxml2, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ 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;
|
|
};
|
|
}
|