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

39 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-17 02:21:50 +00:00
{ lib, stdenv, fetchurl, pkg-config, gtk3, gnome3, 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-10 01:30:58 +00:00
version = "3.38.3";
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "mirror://gnome/sources/tali/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-03-10 01:30:58 +00:00
sha256 = "AhVCi1DEoIJ/sN4uTmum5WZ4+bp22NJbfuyoUhXyWjk=";
};
passthru = {
updateScript = gnome3.updateScript { packageName = "tali"; attrPath = "gnome3.tali"; };
};
2019-03-11 17:52:39 +00:00
nativeBuildInputs = [
meson ninja python3 desktop-file-utils
2021-01-17 02:21:50 +00:00
pkg-config gnome3.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;
};
}