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