lol

gnome.gnome-sudoku: 43.beta → 43.0

https://gitlab.gnome.org/GNOME/gnome-sudoku/-/compare/43.beta...43.0

Format the expression, drop python since it is now using Meson’s post-install function, and correct license.

Changelog-Reviewed-By: Jan Tojnar <jtojnar@gmail.com>

+40 -11
+40 -11
pkgs/desktops/gnome/games/gnome-sudoku/default.nix
··· 1 - { lib, stdenv, fetchurl, meson, ninja, vala, pkg-config, gobject-introspection, gettext, gtk3, gnome, wrapGAppsHook 2 - , libgee, json-glib, qqwing, itstool, libxml2, python3, desktop-file-utils }: 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , meson 5 + , ninja 6 + , vala 7 + , pkg-config 8 + , gobject-introspection 9 + , gettext 10 + , gtk3 11 + , gnome 12 + , wrapGAppsHook 13 + , libgee 14 + , json-glib 15 + , qqwing 16 + , itstool 17 + , libxml2 18 + , desktop-file-utils 19 + }: 3 20 4 21 stdenv.mkDerivation rec { 5 22 pname = "gnome-sudoku"; 6 - version = "43.beta"; 23 + version = "43.0"; 7 24 8 25 src = fetchurl { 9 26 url = "mirror://gnome/sources/gnome-sudoku/${lib.versions.major version}/${pname}-${version}.tar.xz"; 10 - sha256 = "hybZ0Dmtee250tDztEu+Dm+K08ycSylBzHh3t1wCgpU="; 27 + sha256 = "ftJ0KJz1ykELHJKxU3BQpcNi99szmaMrU0PQ3nBGbkk="; 11 28 }; 12 29 13 - nativeBuildInputs = [ meson ninja vala pkg-config gobject-introspection gettext itstool libxml2 python3 desktop-file-utils wrapGAppsHook ]; 14 - buildInputs = [ gtk3 libgee json-glib qqwing ]; 30 + nativeBuildInputs = [ 31 + meson 32 + ninja 33 + vala 34 + pkg-config 35 + gobject-introspection 36 + gettext 37 + itstool 38 + libxml2 39 + desktop-file-utils 40 + wrapGAppsHook 41 + ]; 15 42 16 - postPatch = '' 17 - chmod +x build-aux/post_install.py 18 - patchShebangs build-aux/post_install.py 19 - ''; 43 + buildInputs = [ 44 + gtk3 45 + libgee 46 + json-glib 47 + qqwing 48 + ]; 20 49 21 50 passthru = { 22 51 updateScript = gnome.updateScript { ··· 29 58 homepage = "https://wiki.gnome.org/Apps/Sudoku"; 30 59 description = "Test your logic skills in this number grid puzzle"; 31 60 maintainers = teams.gnome.members; 32 - license = licenses.gpl2; 61 + license = licenses.gpl3Plus; 33 62 platforms = platforms.linux; 34 63 }; 35 64 }