Merge pull request #274829 from jtojnar/gnome-update

GNOME updates 2023-12-16
This commit is contained in:
Bobby Rong 2023-12-22 20:20:18 +08:00 committed by GitHub
commit 9574847521
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

View File

@ -19,13 +19,13 @@
, gnome
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "loupe";
version = "45.2";
version = "45.3";
src = fetchurl {
url = "mirror://gnome/sources/loupe/${lib.versions.major version}/loupe-${version}.tar.xz";
hash = "sha256-uLP/rzZXAmsX4E8Z4EDLqNUetNDKtU5CKVsOWlJxwKs=";
url = "mirror://gnome/sources/loupe/${lib.versions.major finalAttrs.version}/loupe-${finalAttrs.version}.tar.xz";
hash = "sha256-9l8tEgjQhatf+pmN1DyS/pUictTVm1HP7MEevf/KLYY=";
};
patches = [
@ -82,4 +82,4 @@ stdenv.mkDerivation rec {
platforms = platforms.unix;
mainProgram = "loupe";
};
}
})

View File

@ -29,15 +29,15 @@
, nixosTests
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "vte";
version = "0.74.1";
version = "0.74.2";
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "sha256-IyjD8cmYNQoY4OUTNI6fxYHVfqTnuJrt8R4OPGUEK08=";
url = "mirror://gnome/sources/vte/${lib.versions.majorMinor finalAttrs.version}/vte-${finalAttrs.version}.tar.xz";
sha256 = "sha256-pTX7Kpj+qKJEnNGgLMz1GQEx3d/1LnFa/azj/rU26uc=";
};
patches = [
@ -110,7 +110,7 @@ stdenv.mkDerivation rec {
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
packageName = "vte";
versionPolicy = "odd-unstable";
};
tests = {
@ -133,4 +133,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ astsmtl antono ] ++ teams.gnome.members;
platforms = platforms.unix;
};
}
})