swell-foop: 46.0 → 48.alpha

https://gitlab.gnome.org/GNOME/swell-foop/-/compare/46.0...48.alpha

Changelog-Reviewed-By: Bobby Rong <rjl931189261@126.com>

+11 -7
+11 -7
pkgs/by-name/sw/swell-foop/package.nix
··· 8 8 vala, 9 9 glib, 10 10 gtk4, 11 + libadwaita, 11 12 libgee, 12 13 libgnome-games-support_2_0, 13 14 pango, ··· 20 21 python3, 21 22 }: 22 23 23 - stdenv.mkDerivation rec { 24 + stdenv.mkDerivation (finalAttrs: { 24 25 pname = "swell-foop"; 25 - version = "46.0"; 26 + version = "48.alpha"; 26 27 27 28 src = fetchurl { 28 - url = "mirror://gnome/sources/swell-foop/${lib.versions.major version}/swell-foop-${version}.tar.xz"; 29 - hash = "sha256-BvireAfXHOyUi4aDcfR/ut7vzLXDV+E9HvPISBiR/KM="; 29 + url = "mirror://gnome/sources/swell-foop/${lib.versions.major finalAttrs.version}/swell-foop-${finalAttrs.version}.tar.xz"; 30 + hash = "sha256-h0AxrchfUtYzz2fVEkM0jyPmYOvkgvUIMldu+xPTebU="; 30 31 }; 31 32 32 33 nativeBuildInputs = [ ··· 45 46 buildInputs = [ 46 47 glib 47 48 gtk4 49 + libadwaita 48 50 libgee 49 51 libgnome-games-support_2_0 50 52 pango 51 53 ]; 52 54 53 55 passthru = { 54 - updateScript = gnome.updateScript { packageName = "swell-foop"; }; 56 + updateScript = gnome.updateScript { 57 + packageName = "swell-foop"; 58 + }; 55 59 }; 56 60 57 61 meta = with lib; { 58 62 homepage = "https://gitlab.gnome.org/GNOME/swell-foop"; 59 - changelog = "https://gitlab.gnome.org/GNOME/swell-foop/-/tree/${version}?ref_type=tags"; 63 + changelog = "https://gitlab.gnome.org/GNOME/swell-foop/-/tree/${finalAttrs.version}?ref_type=tags"; 60 64 description = "Puzzle game, previously known as Same GNOME"; 61 65 mainProgram = "swell-foop"; 62 66 teams = [ teams.gnome ]; 63 67 license = licenses.gpl2Plus; 64 68 platforms = platforms.linux; 65 69 }; 66 - } 70 + })