gnome.tali: 40.0 → 40.1
https://gitlab.gnome.org/GNOME/tali/-/compare/40.0...40.1 Also correct the license and format the expression.
This commit is contained in:
parent
8fb12deae5
commit
c912d30f65
|
@ -1,38 +1,69 @@
|
||||||
{ lib, stdenv, fetchurl, pkg-config, gtk3, gnome, gdk-pixbuf
|
{
|
||||||
, librsvg, libgnome-games-support, gettext, itstool, libxml2, wrapGAppsHook
|
lib,
|
||||||
, meson, ninja, python3, desktop-file-utils
|
stdenv,
|
||||||
|
fetchurl,
|
||||||
|
pkg-config,
|
||||||
|
gtk3,
|
||||||
|
gnome,
|
||||||
|
gdk-pixbuf,
|
||||||
|
librsvg,
|
||||||
|
libgnome-games-support,
|
||||||
|
gettext,
|
||||||
|
itstool,
|
||||||
|
libxml2,
|
||||||
|
wrapGAppsHook,
|
||||||
|
meson,
|
||||||
|
ninja,
|
||||||
|
python3,
|
||||||
|
desktop-file-utils,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "tali";
|
pname = "tali";
|
||||||
version = "40.0";
|
version = "40.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/tali/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
url = "mirror://gnome/sources/tali/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "19gic6yjg3bg6jf87zvhm7ihsz1y58dz86p4x3a16xdhjyrk40q2";
|
sha256 = "1xhp30c70bi8p4sm6v8zmxi1p55fs56dqgfbhfnsda5g1cxwir7h";
|
||||||
};
|
|
||||||
|
|
||||||
passthru = {
|
|
||||||
updateScript = gnome.updateScript { packageName = "tali"; attrPath = "gnome.tali"; };
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
meson ninja python3 desktop-file-utils
|
meson
|
||||||
pkg-config gnome.adwaita-icon-theme
|
ninja
|
||||||
libxml2 itstool gettext wrapGAppsHook
|
python3
|
||||||
|
desktop-file-utils
|
||||||
|
pkg-config
|
||||||
|
gnome.adwaita-icon-theme
|
||||||
|
libxml2
|
||||||
|
itstool
|
||||||
|
gettext
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gtk3
|
||||||
|
gdk-pixbuf
|
||||||
|
librsvg
|
||||||
|
libgnome-games-support
|
||||||
];
|
];
|
||||||
buildInputs = [ gtk3 gdk-pixbuf librsvg libgnome-games-support ];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
chmod +x build-aux/meson_post_install.py
|
chmod +x build-aux/meson_post_install.py
|
||||||
patchShebangs build-aux/meson_post_install.py
|
patchShebangs build-aux/meson_post_install.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = gnome.updateScript {
|
||||||
|
packageName = pname;
|
||||||
|
attrPath = "gnome.${pname}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://wiki.gnome.org/Apps/Tali";
|
homepage = "https://wiki.gnome.org/Apps/Tali";
|
||||||
description = "Sort of poker with dice and less money";
|
description = "Sort of poker with dice and less money";
|
||||||
maintainers = teams.gnome.members;
|
maintainers = teams.gnome.members;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue