lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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.

+45 -14
+45 -14
pkgs/desktops/gnome/games/tali/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, gtk3, gnome, gdk-pixbuf 2 - , librsvg, libgnome-games-support, gettext, itstool, libxml2, wrapGAppsHook 3 - , meson, ninja, python3, desktop-file-utils 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + pkg-config, 6 + gtk3, 7 + gnome, 8 + gdk-pixbuf, 9 + librsvg, 10 + libgnome-games-support, 11 + gettext, 12 + itstool, 13 + libxml2, 14 + wrapGAppsHook, 15 + meson, 16 + ninja, 17 + python3, 18 + desktop-file-utils, 4 19 }: 5 20 6 21 stdenv.mkDerivation rec { 7 22 pname = "tali"; 8 - version = "40.0"; 23 + version = "40.1"; 9 24 10 25 src = fetchurl { 11 26 url = "mirror://gnome/sources/tali/${lib.versions.major version}/${pname}-${version}.tar.xz"; 12 - sha256 = "19gic6yjg3bg6jf87zvhm7ihsz1y58dz86p4x3a16xdhjyrk40q2"; 27 + sha256 = "1xhp30c70bi8p4sm6v8zmxi1p55fs56dqgfbhfnsda5g1cxwir7h"; 13 28 }; 14 29 15 - passthru = { 16 - updateScript = gnome.updateScript { packageName = "tali"; attrPath = "gnome.tali"; }; 17 - }; 30 + nativeBuildInputs = [ 31 + meson 32 + ninja 33 + python3 34 + desktop-file-utils 35 + pkg-config 36 + gnome.adwaita-icon-theme 37 + libxml2 38 + itstool 39 + gettext 40 + wrapGAppsHook 41 + ]; 18 42 19 - nativeBuildInputs = [ 20 - meson ninja python3 desktop-file-utils 21 - pkg-config gnome.adwaita-icon-theme 22 - libxml2 itstool gettext wrapGAppsHook 43 + buildInputs = [ 44 + gtk3 45 + gdk-pixbuf 46 + librsvg 47 + libgnome-games-support 23 48 ]; 24 - buildInputs = [ gtk3 gdk-pixbuf librsvg libgnome-games-support ]; 25 49 26 50 postPatch = '' 27 51 chmod +x build-aux/meson_post_install.py 28 52 patchShebangs build-aux/meson_post_install.py 29 53 ''; 30 54 55 + passthru = { 56 + updateScript = gnome.updateScript { 57 + packageName = pname; 58 + attrPath = "gnome.${pname}"; 59 + }; 60 + }; 61 + 31 62 meta = with lib; { 32 63 homepage = "https://wiki.gnome.org/Apps/Tali"; 33 64 description = "Sort of poker with dice and less money"; 34 65 maintainers = teams.gnome.members; 35 - license = licenses.gpl2; 66 + license = licenses.gpl2Plus; 36 67 platforms = platforms.linux; 37 68 }; 38 69 }