nixpkgs/pkgs/desktops/gnome/games/tali/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, gtk3, gnome, gdk-pixbuf
, librsvg, libgnome-games-support, gettext, itstool, libxml2, wrapGAppsHook
2019-03-11 17:52:39 +00:00
, meson, ninja, python3, desktop-file-utils
}:
stdenv.mkDerivation rec {
pname = "tali";
2021-03-21 07:30:14 +00:00
version = "40.0";
src = fetchurl {
2021-03-21 07:30:14 +00:00
url = "mirror://gnome/sources/tali/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "19gic6yjg3bg6jf87zvhm7ihsz1y58dz86p4x3a16xdhjyrk40q2";
};
passthru = {
updateScript = gnome.updateScript { packageName = "tali"; attrPath = "gnome.tali"; };
};
2019-03-11 17:52:39 +00:00
nativeBuildInputs = [
meson ninja python3 desktop-file-utils
pkg-config gnome.adwaita-icon-theme
2019-03-11 17:52:39 +00:00
libxml2 itstool gettext wrapGAppsHook
];
buildInputs = [ gtk3 gdk-pixbuf librsvg libgnome-games-support ];
2019-03-11 17:52:39 +00:00
postPatch = ''
chmod +x build-aux/meson_post_install.py
patchShebangs build-aux/meson_post_install.py
'';
meta = with lib; {
homepage = "https://wiki.gnome.org/Apps/Tali";
description = "Sort of poker with dice and less money";
maintainers = teams.gnome.members;
license = licenses.gpl2;
platforms = platforms.linux;
};
}