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>
This commit is contained in:
Jan Tojnar
2025-05-07 02:07:44 +02:00
parent 809c333aa2
commit b122500317
+11 -7
View File
@@ -8,6 +8,7 @@
vala,
glib,
gtk4,
libadwaita,
libgee,
libgnome-games-support_2_0,
pango,
@@ -20,13 +21,13 @@
python3,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "swell-foop";
version = "46.0";
version = "48.alpha";
src = fetchurl {
url = "mirror://gnome/sources/swell-foop/${lib.versions.major version}/swell-foop-${version}.tar.xz";
hash = "sha256-BvireAfXHOyUi4aDcfR/ut7vzLXDV+E9HvPISBiR/KM=";
url = "mirror://gnome/sources/swell-foop/${lib.versions.major finalAttrs.version}/swell-foop-${finalAttrs.version}.tar.xz";
hash = "sha256-h0AxrchfUtYzz2fVEkM0jyPmYOvkgvUIMldu+xPTebU=";
};
nativeBuildInputs = [
@@ -45,22 +46,25 @@ stdenv.mkDerivation rec {
buildInputs = [
glib
gtk4
libadwaita
libgee
libgnome-games-support_2_0
pango
];
passthru = {
updateScript = gnome.updateScript { packageName = "swell-foop"; };
updateScript = gnome.updateScript {
packageName = "swell-foop";
};
};
meta = with lib; {
homepage = "https://gitlab.gnome.org/GNOME/swell-foop";
changelog = "https://gitlab.gnome.org/GNOME/swell-foop/-/tree/${version}?ref_type=tags";
changelog = "https://gitlab.gnome.org/GNOME/swell-foop/-/tree/${finalAttrs.version}?ref_type=tags";
description = "Puzzle game, previously known as Same GNOME";
mainProgram = "swell-foop";
teams = [ teams.gnome ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}
})