gnome-connections: 47.0 → 47.2.1

https://gitlab.gnome.org/GNOME/gnome-connections/-/compare/47.0...47.2.1
This commit is contained in:
Jan Tojnar
2025-02-08 22:04:11 +01:00
parent 12da928bf3
commit 144de79636
@@ -20,13 +20,13 @@
gnome,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "gnome-connections";
version = "47.0";
version = "47.2.1";
src = fetchurl {
url = "mirror://gnome/sources/gnome-connections/${lib.versions.major version}/gnome-connections-${version}.tar.xz";
hash = "sha256-lT4jQ8C9SRawLtE6Ce8Rhv6WmSSSct/tuKI9ibQ3Lm0=";
url = "mirror://gnome/sources/gnome-connections/${lib.versions.major finalAttrs.version}/gnome-connections-${finalAttrs.version}.tar.xz";
hash = "sha256-BSPjy4edSsC5Xn7l8y22YSi1q4QE/xGSMHHNVs/k2Lg=";
};
nativeBuildInputs = [
@@ -52,16 +52,18 @@ stdenv.mkDerivation rec {
];
passthru = {
updateScript = gnome.updateScript { packageName = "gnome-connections"; };
updateScript = gnome.updateScript {
packageName = "gnome-connections";
};
};
meta = with lib; {
homepage = "https://gitlab.gnome.org/GNOME/connections";
changelog = "https://gitlab.gnome.org/GNOME/connections/-/blob/${version}/NEWS?ref_type=tags";
changelog = "https://gitlab.gnome.org/GNOME/connections/-/blob/${finalAttrs.version}/NEWS?ref_type=tags";
description = "Remote desktop client for the GNOME desktop environment";
mainProgram = "gnome-connections";
maintainers = teams.gnome.members;
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}
})