Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gnome-connections: 47.0 -> 47.2.1 #378704

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions pkgs/by-name/gn/gnome-connections/package.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
lib,
stdenv,
fetchurl,
fetchFromGitLab,
meson,
ninja,
pkg-config,
Expand All @@ -20,13 +20,16 @@
gnome,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "gnome-connections";
version = "47.0";
version = "47.2.1";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Release is already on the download server: https://download.gnome.org/sources/gnome-connections/47/


src = fetchurl {
url = "mirror://gnome/sources/gnome-connections/${lib.versions.major version}/gnome-connections-${version}.tar.xz";
hash = "sha256-lT4jQ8C9SRawLtE6Ce8Rhv6WmSSSct/tuKI9ibQ3Lm0=";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = "connections";
rev = finalAttrs.version;
hash = "sha256-myrh6m+z8tiAfuvYZlAwiARrbGK5Iu4gica0rJRgLWk=";
};

nativeBuildInputs = [
Expand All @@ -51,10 +54,6 @@ stdenv.mkDerivation rec {
gtk-frdp
];

passthru = {
updateScript = gnome.updateScript { packageName = "gnome-connections"; };
};

meta = with lib; {
homepage = "https://gitlab.gnome.org/GNOME/connections";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The repo was renamed.

changelog = "https://gitlab.gnome.org/GNOME/connections/-/blob/${version}/NEWS?ref_type=tags";
Expand All @@ -64,4 +63,4 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}
})