gcr_4: 4.3.0 → 4.3.1

https://gitlab.gnome.org/GNOME/gcr/-/compare/4.3.0...4.3.1
This commit is contained in:
Jan Tojnar 2025-02-08 20:14:01 +00:00
parent a58d808136
commit 00704a3957

View File

@ -26,9 +26,9 @@
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "gcr";
version = "4.3.0";
version = "4.3.1";
outputs = [
"out"
@ -38,8 +38,8 @@ stdenv.mkDerivation rec {
];
src = fetchurl {
url = "mirror://gnome/sources/gcr/${lib.versions.majorMinor version}/gcr-${version}.tar.xz";
hash = "sha256-w+6HKOQ2SwOX9DX6IPkvkBqxOdKyZPTgWdZ7PA9DzTY=";
url = "mirror://gnome/sources/gcr/${lib.versions.majorMinor finalAttrs.version}/gcr-${finalAttrs.version}.tar.xz";
hash = "sha256-svBw//GEDu9wVGoovoAjVCfBFqrcWTtbaMzIab46oJ0=";
};
strictDeps = true;
@ -125,4 +125,4 @@ stdenv.mkDerivation rec {
(G)object oriented way.
'';
};
}
})