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

[Backport staging-24.11] GNOME staging updates 2024-12-31 #372771

Open
wants to merge 2 commits into
base: staging-24.11
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions pkgs/development/libraries/gtk/4.x.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ in

stdenv.mkDerivation (finalAttrs: {
pname = "gtk4";
version = "4.16.3";
version = "4.16.7";

outputs = [ "out" "dev" ] ++ lib.optionals x11Support [ "devdoc" ];
outputBin = "dev";
Expand All @@ -82,7 +82,7 @@ stdenv.mkDerivation (finalAttrs: {

src = fetchurl {
url = with finalAttrs; "mirror://gnome/sources/gtk/${lib.versions.majorMinor version}/gtk-${version}.tar.xz";
hash = "sha256-LsU+B9GMnwA7OeSmqDgFTZJZ4Ei2xMBdgMDQWqch2UQ=";
hash = "sha256-UwPHYk4VpIiAWRud3UM4mvuj3k+5KiGXGVGbsWQs49w=";
};

depsBuildBuild = [
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/profiling/sysprof/capture.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
sysprof,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "libsysprof-capture";

inherit (sysprof) src version;
Expand Down
12 changes: 6 additions & 6 deletions pkgs/development/tools/profiling/sysprof/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
gnome,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "sysprof";
version = "47.0";
version = "47.2";

outputs = [
"out"
Expand All @@ -34,8 +34,8 @@ stdenv.mkDerivation rec {
];

src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
hash = "sha256-dCTGKUNGYGVCiMBCSJmMNX0c6H7hVZ/UTfGYCZLvXfU=";
url = "mirror://gnome/sources/sysprof/${lib.versions.major finalAttrs.version}/sysprof-${finalAttrs.version}.tar.xz";
hash = "sha256-5LXt6f2XjsPw1aDUTQQpptIBw2K/bLRScxkDGuRixU8=";
};

nativeBuildInputs = [
Expand Down Expand Up @@ -70,7 +70,7 @@ stdenv.mkDerivation rec {

passthru = {
updateScript = gnome.updateScript {
packageName = pname;
packageName = "sysprof";
};
};

Expand All @@ -88,4 +88,4 @@ stdenv.mkDerivation rec {
maintainers = teams.gnome.members;
platforms = platforms.unix;
};
}
})
Loading