From bbfc8ef1e641ae85feb7b3f2780451b7b016f91c Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Tue, 6 Aug 2024 20:14:38 +0200 Subject: [PATCH 001/210] docs/language-frameworks/python: specify how to add non-python runtime deps --- doc/languages-frameworks/python.section.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md index 5a2e2de2edef..86dded0bae68 100644 --- a/doc/languages-frameworks/python.section.md +++ b/doc/languages-frameworks/python.section.md @@ -2016,6 +2016,9 @@ The following rules are desired to be respected: and using a `-` as delimiter. * Attribute names in `python-packages.nix` should be sorted alphanumerically to avoid merge conflicts and ease locating attributes. +* Non-python runtime dependencies should be added via explicit wrapping or + patching (using e.g. `substituteInPlace`), rather than through propagation via + `dependencies`/`propagatedBuildInputs`, to reduce clutter in `$PATH`. This list is useful for reviewers as well as for self-checking when submitting packages. From c5c2589da17fe1cbd3c07d81d7ffb34f13466817 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 9 Jan 2025 02:38:46 +0000 Subject: [PATCH 002/210] pacemaker: 2.1.9 -> 3.0.0 --- pkgs/by-name/pa/pacemaker/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pa/pacemaker/package.nix b/pkgs/by-name/pa/pacemaker/package.nix index 5900f3a9c4d3..183c661f612b 100644 --- a/pkgs/by-name/pa/pacemaker/package.nix +++ b/pkgs/by-name/pa/pacemaker/package.nix @@ -30,13 +30,13 @@ stdenv.mkDerivation rec { pname = "pacemaker"; - version = "2.1.9"; + version = "3.0.0"; src = fetchFromGitHub { owner = "ClusterLabs"; repo = pname; rev = "Pacemaker-${version}"; - sha256 = "sha256-L/LQS5XLps0pqTfMAh1ZiR00SVltrNxMl6DXQhXBw1Q="; + sha256 = "sha256-2Uj81hWNig30baS9a9Uc0+T1lZuADtcSDmn/TX5koL8="; }; nativeBuildInputs = [ From 65482987fa076af2cff289f4d9bf735899b64fb1 Mon Sep 17 00:00:00 2001 From: jayrovacsek Date: Sun, 9 Mar 2025 08:49:53 +1100 Subject: [PATCH 003/210] maintainers: add jayrovacsek --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 6e14fcaecc49..268fc6691f3f 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -10678,6 +10678,12 @@ githubId = 5579359; name = "Jason Yundt"; }; + jayrovacsek = { + email = "nixpkgs@jay.rovacsek.com"; + github = "JayRovacsek"; + githubId = 29395089; + name = "Jay Rovacsek"; + }; jb55 = { email = "jb55@jb55.com"; github = "jb55"; From 090ab43ceb978ec9c06d16f4b7444d9cc7c785c9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 18 Mar 2025 10:34:33 +0000 Subject: [PATCH 004/210] python312Packages.hikari-crescent: 1.1.0 -> 1.2.0 --- pkgs/development/python-modules/hikari-crescent/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/hikari-crescent/default.nix b/pkgs/development/python-modules/hikari-crescent/default.nix index f3a296d12712..abaa5c0d1373 100644 --- a/pkgs/development/python-modules/hikari-crescent/default.nix +++ b/pkgs/development/python-modules/hikari-crescent/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "hikari-crescent"; - version = "1.1.0"; + version = "1.2.0"; pyproject = true; src = fetchFromGitHub { owner = "hikari-crescent"; repo = "hikari-crescent"; tag = "v${version}"; - hash = "sha256-37QA/yBBDo7w/e7SvgXnzfxeCulyYgB+xtJY25HJ9FM="; + hash = "sha256-aQjT5sAaqConUtRGcqddzwcbBJkbwYOCxvnNJpKu3yI="; }; build-system = [ poetry-core ]; From d63e00912bad061fdb93af67cc2d80a928d39a18 Mon Sep 17 00:00:00 2001 From: Thomas Kerber Date: Thu, 27 Mar 2025 10:59:09 +0000 Subject: [PATCH 005/210] chez: pin to clang-17 on aarch64 darwin --- pkgs/by-name/ch/chez/package.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/ch/chez/package.nix b/pkgs/by-name/ch/chez/package.nix index 52ac003255ed..d423056be477 100644 --- a/pkgs/by-name/ch/chez/package.nix +++ b/pkgs/by-name/ch/chez/package.nix @@ -16,11 +16,9 @@ let # x64 darwin fails with invalid memory reference with clang-18 & 19. # https://github.com/cisco/ChezScheme/issues/896 - stdenv = - if args.stdenv.hostPlatform.isDarwin && args.stdenv.hostPlatform.isx86_64 then - llvmPackages_17.stdenv - else - args.stdenv; + # aarch64 darwin fails to execute `system` calls with clang-18 & 19. + # https://github.com/cisco/ChezScheme/issues/928 + stdenv = if args.stdenv.hostPlatform.isDarwin then llvmPackages_17.stdenv else args.stdenv; in stdenv.mkDerivation (finalAttrs: { pname = "chez-scheme"; From 3b5dced853ff8780c235928abe1987af65c791e6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 3 Apr 2025 06:54:17 +0000 Subject: [PATCH 006/210] python312Packages.karton-core: 5.6.0 -> 5.6.1 --- pkgs/development/python-modules/karton-core/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/karton-core/default.nix b/pkgs/development/python-modules/karton-core/default.nix index 2e5742546175..9c5c6ad40b74 100644 --- a/pkgs/development/python-modules/karton-core/default.nix +++ b/pkgs/development/python-modules/karton-core/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "karton-core"; - version = "5.6.0"; + version = "5.6.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "CERT-Polska"; repo = "karton"; tag = "v${version}"; - hash = "sha256-I5kJO4C//zlmnptuC1c8BJBV6h3pTEuo6EsXuublUCs="; + hash = "sha256-fOnOZJKjlcF00FHGd/MTWo3Z7ZYdN2olOWzl/R39IWI="; }; build-system = [ setuptools ]; @@ -41,7 +41,7 @@ buildPythonPackage rec { meta = with lib; { description = "Distributed malware processing framework"; homepage = "https://karton-core.readthedocs.io/"; - changelog = "https://github.com/CERT-Polska/karton/releases/tag/v${version}"; + changelog = "https://github.com/CERT-Polska/karton/releases/tag/${src.tag}"; license = licenses.bsd3; maintainers = with maintainers; [ chivay From 434807a619786f90eebbdb6de9c891f96f4ce8d5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 3 Apr 2025 10:06:00 +0000 Subject: [PATCH 007/210] python312Packages.pivy: 0.6.9 -> 0.6.10 --- pkgs/development/python-modules/pivy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pivy/default.nix b/pkgs/development/python-modules/pivy/default.nix index ab3297a2cdcb..0e66042a1d85 100644 --- a/pkgs/development/python-modules/pivy/default.nix +++ b/pkgs/development/python-modules/pivy/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "pivy"; - version = "0.6.9"; + version = "0.6.10"; pyproject = true; src = fetchFromGitHub { owner = "coin3d"; repo = "pivy"; tag = version; - hash = "sha256-wWM8eKTehWCIbRxxWkZ4YrYyeIJuzQaBOUMrW9a5MVo="; + hash = "sha256-DRA4NTAHg2iB/D1CU9pJEpsZwX9GW3X5gpxbIwP54Ko="; }; build-system = [ setuptools ]; From 5c127aa8269c8a7623adcec445728624852a72b1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 4 Apr 2025 07:26:30 +0000 Subject: [PATCH 008/210] libsForQt5.qcoro: 0.11.0 -> 0.12.0 --- pkgs/development/libraries/qcoro/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/qcoro/default.nix b/pkgs/development/libraries/qcoro/default.nix index 92818b35571b..8163a48b85b2 100644 --- a/pkgs/development/libraries/qcoro/default.nix +++ b/pkgs/development/libraries/qcoro/default.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation rec { pname = "qcoro"; - version = "0.11.0"; + version = "0.12.0"; src = fetchFromGitHub { owner = "danvratil"; repo = "qcoro"; rev = "v${version}"; - sha256 = "sha256-teRuWtNR8r/MHZhqphazr7Jmn43qsHGv9eXOGrhSND0="; + sha256 = "sha256-NF+va2pS2NJt4OE+yfN/jVnfkueBdjoyg2lQJhMRWe4="; }; outputs = [ From 43d93e411c325f0483d86f503e7dbc3b25e8d15a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 5 Apr 2025 12:34:33 +0000 Subject: [PATCH 009/210] miniupnpd: 2.3.7 -> 2.3.8 --- pkgs/tools/networking/miniupnpd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/miniupnpd/default.nix b/pkgs/tools/networking/miniupnpd/default.nix index fea5ea98d200..c0f192f889bb 100644 --- a/pkgs/tools/networking/miniupnpd/default.nix +++ b/pkgs/tools/networking/miniupnpd/default.nix @@ -47,11 +47,11 @@ let in stdenv.mkDerivation rec { pname = "miniupnpd"; - version = "2.3.7"; + version = "2.3.8"; src = fetchurl { url = "https://miniupnp.tuxfamily.org/files/miniupnpd-${version}.tar.gz"; - sha256 = "sha256-+91VAQOXMPBKhCDqL49Ut99j+fBM3i3Gf6c3HoBHe74="; + sha256 = "sha256-wUirMA/kao6969KkiDKCM8Jh2Bds+ob5bErep4SMtIg="; }; buildInputs = From e2db73aae2f9aec93b2f2798928728a9e59f2493 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 6 Apr 2025 13:56:24 +0000 Subject: [PATCH 010/210] obs-studio-plugins.obs-livesplit-one: 0.3.4 -> 0.4.1 --- .../video/obs-studio/plugins/obs-livesplit-one/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/obs-studio/plugins/obs-livesplit-one/default.nix b/pkgs/applications/video/obs-studio/plugins/obs-livesplit-one/default.nix index 22e963b1d8e1..3897fc7b384a 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-livesplit-one/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-livesplit-one/default.nix @@ -10,17 +10,17 @@ rustPlatform.buildRustPackage rec { pname = "obs-livesplit-one"; - version = "0.3.4"; + version = "0.4.1"; src = fetchFromGitHub { owner = "LiveSplit"; repo = pname; rev = "v${version}"; - sha256 = "sha256-3B3P1PlzIlpVqHJMKWpEnWXGgD/IaiWM1FVKn0BtRj0="; + sha256 = "sha256-4Ar4ChSl226BVFyAnqpWDLxsZF63bxl++sWD+6aENW8="; }; useFetchCargoVendor = true; - cargoHash = "sha256-JHocpqDeF24Qn9lUr+YCnZqgckLhGRpWQD7WGCxVmd8="; + cargoHash = "sha256-e0FDa72vzRb5AMVmtkvAkiQ5GUXsq0LekqF+wDYDsr8="; nativeBuildInputs = [ cmake From f832bbe444770a9a55cb9aa64f89613f0ace9187 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 6 Apr 2025 14:38:15 +0000 Subject: [PATCH 011/210] renode-unstable: 1.15.3+20250314git5b219d820 -> 1.15.3+20250406gitea53e3840 --- pkgs/by-name/re/renode-unstable/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/re/renode-unstable/package.nix b/pkgs/by-name/re/renode-unstable/package.nix index f5216be48eeb..e90d7b637e59 100644 --- a/pkgs/by-name/re/renode-unstable/package.nix +++ b/pkgs/by-name/re/renode-unstable/package.nix @@ -7,11 +7,11 @@ renode.overrideAttrs ( finalAttrs: _: { pname = "renode-unstable"; - version = "1.15.3+20250314git5b219d820"; + version = "1.15.3+20250406gitea53e3840"; src = fetchurl { url = "https://builds.renode.io/renode-${finalAttrs.version}.linux-dotnet.tar.gz"; - hash = "sha256-v23MC22DVYV+czmpktKKP8lU0JKjgoOfNkTDhm0q/4o="; + hash = "sha256-bhuhMSogZUuUQrSVw9MAt8L89OoT67QRuZ9AG2ZTAKI="; }; passthru.updateScript = From b8d1fe7fa3d0d9222fa04aeeb2166c9e871e3d08 Mon Sep 17 00:00:00 2001 From: Haylin Moore Date: Mon, 7 Apr 2025 14:37:38 -0400 Subject: [PATCH 012/210] lifelines: unstable-2019-05-07 -> 0-unstable-2025-01-05 --- pkgs/by-name/li/lifelines/package.nix | 25 +++++++------------------ 1 file changed, 7 insertions(+), 18 deletions(-) diff --git a/pkgs/by-name/li/lifelines/package.nix b/pkgs/by-name/li/lifelines/package.nix index a1014564ef0f..4f45e30442c3 100644 --- a/pkgs/by-name/li/lifelines/package.nix +++ b/pkgs/by-name/li/lifelines/package.nix @@ -2,7 +2,6 @@ lib, stdenv, fetchFromGitHub, - fetchpatch, gettext, libiconv, bison, @@ -13,25 +12,15 @@ stdenv.mkDerivation { pname = "lifelines"; - version = "unstable-2019-05-07"; + version = "0-unstable-2025-01-05"; src = fetchFromGitHub { owner = "lifelines"; repo = "lifelines"; - rev = "43f29285ed46fba322b6a14322771626e6b02c59"; - sha256 = "1agszzlmkxmznpc1xj0vzxkskrcfagfjvqsdyw1yp5yg6bsq272y"; + rev = "fbc92b6585e5f642c59a5317a0f4d4573f51b2d6"; + sha256 = "sha256-G/Sj3E8K4QDR4fJcipCKTXpQU19LOfOeLBp5k7uPwk4="; }; - patches = [ - # Fix pending upstream inclusion for ncurses-6.3 support: - # https://github.com/lifelines/lifelines/pull/437 - (fetchpatch { - name = "ncurses-6.3.patch"; - url = "https://github.com/lifelines/lifelines/commit/e04ce2794d458c440787c191877fbbc0784447bd.patch"; - sha256 = "1smnz4z5hfjas79bfvlnpw9x8199a5g0p9cvhf17zpcnz1432kg7"; - }) - ]; - buildInputs = [ gettext libiconv @@ -43,11 +32,11 @@ stdenv.mkDerivation { bison ]; - meta = with lib; { + meta = { description = "Genealogy tool with ncurses interface"; homepage = "https://lifelines.github.io/lifelines/"; - license = licenses.mit; - maintainers = with maintainers; [ disassembler ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.disassembler ]; + platforms = lib.platforms.linux; }; } From 46fc6bd288fa242d4a9de4650089d1c01c0f4800 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 2 Apr 2025 07:26:33 +0000 Subject: [PATCH 013/210] linuxPackages.nullfs: 0.17 -> 0.18 --- pkgs/os-specific/linux/nullfs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/nullfs/default.nix b/pkgs/os-specific/linux/nullfs/default.nix index db2c52d6c068..8001dbab52d3 100644 --- a/pkgs/os-specific/linux/nullfs/default.nix +++ b/pkgs/os-specific/linux/nullfs/default.nix @@ -7,13 +7,13 @@ }: stdenv.mkDerivation rec { pname = "nullfs"; - version = "0.17"; + version = "0.18"; src = fetchFromGitHub { owner = "abbbi"; repo = "nullfsvfs"; rev = "v${version}"; - sha256 = "sha256-Hkplhem4Gb1xsYQtRSWub0m15Fiil3qJAO183ygP+WI="; + sha256 = "sha256-tfa0SPhTm9vvv4CiwcDyz6KssJqD9F2SlWB4rwZpGoY="; }; hardeningDisable = [ "pic" ]; From 2fa3267a64847641d258e54f2068ce346db7a315 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 8 Apr 2025 12:55:51 +0000 Subject: [PATCH 014/210] m17n_db: 1.8.9 -> 1.8.10 --- pkgs/by-name/m1/m17n_db/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/m1/m17n_db/package.nix b/pkgs/by-name/m1/m17n_db/package.nix index 416479917efc..a24093cb4b48 100644 --- a/pkgs/by-name/m1/m17n_db/package.nix +++ b/pkgs/by-name/m1/m17n_db/package.nix @@ -9,11 +9,11 @@ stdenv.mkDerivation rec { pname = "m17n-db"; - version = "1.8.9"; + version = "1.8.10"; src = fetchurl { url = "mirror://savannah/m17n/${pname}-${version}.tar.gz"; - hash = "sha256-SBJUo4CqnGbX9Ow6o3Kn4dL+R/w53252BEvUQBfEJKQ="; + hash = "sha256-MQJOBRNTNEi5sx6jKU01pkJuZpDrRGKGgHMaqVXAwWw="; }; nativeBuildInputs = [ gettext ]; From 6d28ea75d4eebff158697073b18fcb01c92756ad Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 8 Apr 2025 00:59:19 +0000 Subject: [PATCH 015/210] cni: 1.2.3 -> 1.3.0 --- pkgs/applications/networking/cluster/cni/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/cni/default.nix b/pkgs/applications/networking/cluster/cni/default.nix index be96dfdbe562..205e412c3cee 100644 --- a/pkgs/applications/networking/cluster/cni/default.nix +++ b/pkgs/applications/networking/cluster/cni/default.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "cni"; - version = "1.2.3"; + version = "1.3.0"; src = fetchFromGitHub { owner = "containernetworking"; repo = pname; rev = "v${version}"; - hash = "sha256-ocSc1fhbBB8YRxVVOvYMombOOkLMdfv9V4GYbf8kwIE="; + hash = "sha256-xeajsM8ZIlI6Otv9CQhPfYaVQwmJ5QcFEn1xt6e/ivQ="; }; - vendorHash = "sha256-/aPx8NgGkJ1irU0LGzmYTlsiX2U5or24Vl1PGHWuDyE="; + vendorHash = "sha256-uo3ZwFdD6aJ0WDGmt51l3hs9agUnv1cIQY/KMlNe5nI="; subPackages = [ "./cnitool" From 5965657453e7d5d59f64551d16ce08d53948caaa Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 8 Apr 2025 18:49:13 +0000 Subject: [PATCH 016/210] therion: 6.3.3 -> 6.3.4 --- pkgs/by-name/th/therion/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/th/therion/package.nix b/pkgs/by-name/th/therion/package.nix index ac2a0d722673..2f9bd7a583ec 100644 --- a/pkgs/by-name/th/therion/package.nix +++ b/pkgs/by-name/th/therion/package.nix @@ -30,13 +30,13 @@ stdenv.mkDerivation rec { pname = "therion"; - version = "6.3.3"; + version = "6.3.4"; src = fetchFromGitHub { owner = "therion"; repo = "therion"; tag = "v${version}"; - hash = "sha256-yxY4rYaDmDK0mJH60FS12ILjntsjxhFNeijTFrNKSzU="; + hash = "sha256-kus5MoiUrLadpzq0wPB+J85F0RVva7NAYM6E6HX4eJ8="; }; nativeBuildInputs = [ From dbe728c887466998463113aae3e2910e64fb8899 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 9 Apr 2025 01:48:12 +0000 Subject: [PATCH 017/210] openxr-loader: 1.1.46 -> 1.1.47 --- pkgs/by-name/op/openxr-loader/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/op/openxr-loader/package.nix b/pkgs/by-name/op/openxr-loader/package.nix index 6fbea11233c9..b6f31e85b909 100644 --- a/pkgs/by-name/op/openxr-loader/package.nix +++ b/pkgs/by-name/op/openxr-loader/package.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation rec { pname = "openxr-loader"; - version = "1.1.46"; + version = "1.1.47"; src = fetchFromGitHub { owner = "KhronosGroup"; repo = "OpenXR-SDK-Source"; tag = "release-${version}"; - hash = "sha256-C2PGPIDA4C/d37jjXLO+2lqD5VSV3skSqraRiT8RT+c="; + hash = "sha256-7VW99dtE7gz0Y9pKyAdyeKHL6zgk5KvA8jPfgG1O5sc="; }; nativeBuildInputs = [ From fb07e96cba285588889a0c27cb2563d7fee57354 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 10 Apr 2025 07:53:31 +0000 Subject: [PATCH 018/210] prometheus-postfix-exporter: 0.8.0 -> 0.9.0 --- pkgs/servers/monitoring/prometheus/postfix-exporter.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/postfix-exporter.nix b/pkgs/servers/monitoring/prometheus/postfix-exporter.nix index 8bbfcc9e8fe3..e593a93389ad 100644 --- a/pkgs/servers/monitoring/prometheus/postfix-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/postfix-exporter.nix @@ -10,16 +10,16 @@ buildGoModule rec { pname = "postfix_exporter"; - version = "0.8.0"; + version = "0.9.0"; src = fetchFromGitHub { owner = "Hsn723"; repo = "postfix_exporter"; tag = "v${version}"; - sha256 = "sha256-g/Y+amX3vyyhkxvJAxPimFDgFdpcA5+zWTu2Mhq3Dyw="; + sha256 = "sha256-ypwrruekFJXiCNrh2mcEr2mZvaKQrwRpIERE7/L4LHU="; }; - vendorHash = "sha256-hcS7BBs54RmBu1d2EXedc9bU2eXmB9bQ4yAyYgp85xY="; + vendorHash = "sha256-xtts/HXPaaEWtmqTAZdXOrN4nDR5qMIJzwcxqXAoynU="; ldflags = [ "-s" From ccf0c7ba5bb321a5ce6cb2ba1af4f163c6e839b1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 11 Apr 2025 14:19:06 +0000 Subject: [PATCH 019/210] ceph-csi: 3.13.1 -> 3.14.0 --- pkgs/by-name/ce/ceph-csi/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ce/ceph-csi/package.nix b/pkgs/by-name/ce/ceph-csi/package.nix index 8db4efbf105c..0231fbe7dbc9 100644 --- a/pkgs/by-name/ce/ceph-csi/package.nix +++ b/pkgs/by-name/ce/ceph-csi/package.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation rec { pname = "ceph-csi"; - version = "3.13.1"; + version = "3.14.0"; src = fetchFromGitHub { owner = "ceph"; repo = "ceph-csi"; rev = "v${version}"; - hash = "sha256-Wa5elZbQotgeb4pH9DIZd48CQyBJ0O5y1SidIb/iyGY="; + hash = "sha256-c6OaWDR38S0yl3pVN+DYjfg9oHqmVXljstmvBDmfOi8="; }; preConfigure = '' From 520c327ba3382f4a4d7cb86c34c64decb45c4921 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 12 Apr 2025 02:16:13 +0000 Subject: [PATCH 020/210] way-displays: 1.13.0 -> 1.14.0 --- pkgs/by-name/wa/way-displays/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/wa/way-displays/package.nix b/pkgs/by-name/wa/way-displays/package.nix index 471ed140dcb5..a83567663e95 100644 --- a/pkgs/by-name/wa/way-displays/package.nix +++ b/pkgs/by-name/wa/way-displays/package.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation rec { pname = "way-displays"; - version = "1.13.0"; + version = "1.14.0"; src = fetchFromGitHub { owner = "alex-courtis"; repo = "way-displays"; rev = version; - sha256 = "sha256-auZhA29l3eBz5OALLP5MDqoT8DxLLyOpjMAbNf4pYwg="; + sha256 = "sha256-HIm5cHi9yX9IHDrxqYzxwefuZtOCu5TJzf3j0aiSC5g="; }; strictDeps = true; From 8aaa9c27fa6994233147dd390d848b17a53088d8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 12 Apr 2025 08:08:51 +0000 Subject: [PATCH 021/210] trackma-qt: 0.8.6 -> 0.9 --- pkgs/by-name/tr/trackma/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tr/trackma/package.nix b/pkgs/by-name/tr/trackma/package.nix index 69f91e5af2eb..0b9f8973f0f3 100644 --- a/pkgs/by-name/tr/trackma/package.nix +++ b/pkgs/by-name/tr/trackma/package.nix @@ -32,14 +32,14 @@ let in python3.pkgs.buildPythonApplication rec { pname = "trackma"; - version = "0.8.6"; + version = "0.9"; format = "pyproject"; src = fetchFromGitHub { owner = "z411"; repo = "trackma"; rev = "v${version}"; - sha256 = "qlkFQSJFjxkGd5WkNGfyAo64ys8VJLep/ZOL6icXQ4c="; + sha256 = "Hov9qdVabu1k3SIoUmvcRtSK8TcETqGPXI2RqN/bei4="; fetchSubmodules = true; # for anime-relations submodule }; From cb339d9843a5d3ee613911c0851de8d1583813cc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 12 Apr 2025 08:09:12 +0000 Subject: [PATCH 022/210] trackma-curses: 0.8.6 -> 0.9 --- pkgs/by-name/tr/trackma/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tr/trackma/package.nix b/pkgs/by-name/tr/trackma/package.nix index 69f91e5af2eb..0b9f8973f0f3 100644 --- a/pkgs/by-name/tr/trackma/package.nix +++ b/pkgs/by-name/tr/trackma/package.nix @@ -32,14 +32,14 @@ let in python3.pkgs.buildPythonApplication rec { pname = "trackma"; - version = "0.8.6"; + version = "0.9"; format = "pyproject"; src = fetchFromGitHub { owner = "z411"; repo = "trackma"; rev = "v${version}"; - sha256 = "qlkFQSJFjxkGd5WkNGfyAo64ys8VJLep/ZOL6icXQ4c="; + sha256 = "Hov9qdVabu1k3SIoUmvcRtSK8TcETqGPXI2RqN/bei4="; fetchSubmodules = true; # for anime-relations submodule }; From 9bcb0d33e95ff8590d22544e09c248b57f88647a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 12 Apr 2025 08:09:13 +0000 Subject: [PATCH 023/210] trackma-gtk: 0.8.6 -> 0.9 --- pkgs/by-name/tr/trackma/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tr/trackma/package.nix b/pkgs/by-name/tr/trackma/package.nix index 69f91e5af2eb..0b9f8973f0f3 100644 --- a/pkgs/by-name/tr/trackma/package.nix +++ b/pkgs/by-name/tr/trackma/package.nix @@ -32,14 +32,14 @@ let in python3.pkgs.buildPythonApplication rec { pname = "trackma"; - version = "0.8.6"; + version = "0.9"; format = "pyproject"; src = fetchFromGitHub { owner = "z411"; repo = "trackma"; rev = "v${version}"; - sha256 = "qlkFQSJFjxkGd5WkNGfyAo64ys8VJLep/ZOL6icXQ4c="; + sha256 = "Hov9qdVabu1k3SIoUmvcRtSK8TcETqGPXI2RqN/bei4="; fetchSubmodules = true; # for anime-relations submodule }; From 8545a98767c5a24a1529dc9dc865230d29242858 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 13 Apr 2025 07:39:07 +0000 Subject: [PATCH 024/210] fiji: 20241114-1317 -> 20250408-1717 --- pkgs/by-name/fi/fiji/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fi/fiji/package.nix b/pkgs/by-name/fi/fiji/package.nix index dd2b5f67dccc..a0594e38dd4f 100644 --- a/pkgs/by-name/fi/fiji/package.nix +++ b/pkgs/by-name/fi/fiji/package.nix @@ -14,11 +14,11 @@ stdenv.mkDerivation rec { pname = "fiji"; - version = "20241114-1317"; + version = "20250408-1717"; src = fetchurl { url = "https://downloads.imagej.net/fiji/archive/${version}/fiji-nojre.zip"; - sha256 = "sha256-dNpscgZiiE2cuuo11YLs+mgoBRZ/MpUXDaAX3x+E/w8="; + sha256 = "sha256-bqVrTBKII58E7WSlQfRPE0Dxd4h/oJALFvIOdAAFZoI="; }; dontBuild = true; From 1050d071929463adb7ae9b548263ad9f51a47c97 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 13 Apr 2025 13:21:04 +0000 Subject: [PATCH 025/210] sonivox: 3.6.15 -> 3.6.16 --- pkgs/by-name/so/sonivox/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/so/sonivox/package.nix b/pkgs/by-name/so/sonivox/package.nix index 717f8eefa752..b2ddbd4deed3 100644 --- a/pkgs/by-name/so/sonivox/package.nix +++ b/pkgs/by-name/so/sonivox/package.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "sonivox"; - version = "3.6.15"; + version = "3.6.16"; src = fetchFromGitHub { owner = "pedrolcl"; repo = "sonivox"; rev = "v${version}"; - hash = "sha256-k+EhhLFp+ehptjDS8ZHvo5tfFxmSCA2lFTjkWFLi+cs="; + hash = "sha256-2OWlm1GZI08OeiG3AswRyvguv9MUYo1dLo6QUPr3r3s="; }; nativeBuildInputs = [ cmake ]; From d2c903e8354c9bdfeab204a392ad1930274793a2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 13 Apr 2025 13:42:29 +0000 Subject: [PATCH 026/210] python312Packages.bcc: 0.33.0 -> 0.34.0 --- pkgs/by-name/bc/bcc/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/bc/bcc/package.nix b/pkgs/by-name/bc/bcc/package.nix index e8404b9fb624..448ba00b68bf 100644 --- a/pkgs/by-name/bc/bcc/package.nix +++ b/pkgs/by-name/bc/bcc/package.nix @@ -22,7 +22,7 @@ python3Packages.buildPythonApplication rec { pname = "bcc"; - version = "0.33.0"; + version = "0.34.0"; disabled = !stdenv.hostPlatform.isLinux; @@ -30,7 +30,7 @@ python3Packages.buildPythonApplication rec { owner = "iovisor"; repo = "bcc"; tag = "v${version}"; - hash = "sha256-6dT3seLuEVQNKWiYGLK1ajXzW7pb62S/GQ0Lp4JdGjc="; + hash = "sha256-sSHEsvTtqPpfxSevmjciQ+xFj+4G4GE4ExWoIYc+DQI="; }; format = "other"; From 2d266dd1844cbc6284ca5c3390d019346b8dbb49 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 13 Apr 2025 19:21:14 +0000 Subject: [PATCH 027/210] pe-bear: 0.7.0 -> 0.7.0.4 --- pkgs/applications/misc/pe-bear/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/pe-bear/default.nix b/pkgs/applications/misc/pe-bear/default.nix index c85fc3f9403b..57084d86e364 100644 --- a/pkgs/applications/misc/pe-bear/default.nix +++ b/pkgs/applications/misc/pe-bear/default.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation rec { pname = "pe-bear"; - version = "0.7.0"; + version = "0.7.0.4"; src = fetchFromGitHub { owner = "hasherezade"; repo = "pe-bear"; rev = "v${version}"; - hash = "sha256-jHFH1GAbAtOzUh+Gma89YCU5r/yuwekv/bqiyy8VmRk="; + hash = "sha256-W8Sa7MKTf7mbdzAEL6tNDpmXIFWAC/8qSXBqqsZ4WFk="; fetchSubmodules = true; }; From 23b3807ea8241d5f73e5161c1dd706966108c5b9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 13 Apr 2025 20:30:33 +0000 Subject: [PATCH 028/210] elektroid: 3.1 -> 3.2 --- pkgs/by-name/el/elektroid/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/el/elektroid/package.nix b/pkgs/by-name/el/elektroid/package.nix index cc4f8202ba04..c723f9e91923 100644 --- a/pkgs/by-name/el/elektroid/package.nix +++ b/pkgs/by-name/el/elektroid/package.nix @@ -15,7 +15,7 @@ }: let - version = "3.1"; + version = "3.2"; in stdenv.mkDerivation { inherit version; @@ -26,7 +26,7 @@ stdenv.mkDerivation { owner = "dagargo"; repo = "elektroid"; rev = version; - hash = "sha256-YJcvJlnRUhwjQ6P3jgjyDtoJhuije1uY77mGNGZure0="; + hash = "sha256-8tKs0i1dkoLlk1a33n7+6eIXqjNu3PHUTznrEC/HPIM="; }; nativeBuildInputs = [ From 67b39851ba98a376d79b41572cafdbf98acbface Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 14 Apr 2025 01:10:09 +0000 Subject: [PATCH 029/210] olvid: 2.3.0 -> 2.4.2 --- pkgs/by-name/ol/olvid/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ol/olvid/package.nix b/pkgs/by-name/ol/olvid/package.nix index 6b6af9b94cb7..535ce4c5b40f 100644 --- a/pkgs/by-name/ol/olvid/package.nix +++ b/pkgs/by-name/ol/olvid/package.nix @@ -62,14 +62,14 @@ in stdenv.mkDerivation (finalAttrs: { pname = "olvid"; - version = "2.3.0"; + version = "2.4.2"; dontUnpack = true; dontWrapGApps = true; src = fetchurl { url = "https://static.olvid.io/linux/${repo}-${finalAttrs.version}.tar.gz"; - hash = "sha256-MzWDqF8mfrtIRmz4Eoxeek3nwV0S3TobZNxIGz1SQM8="; + hash = "sha256-eL6XLdEwb3txgN7/YZv1vQGI4pznZb/CrjYY+QZlr5I="; }; nativeBuildInputs = [ From b013bfce34550de6862b6dd30fb27a5a13e8e4b2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 14 Apr 2025 01:16:11 +0000 Subject: [PATCH 030/210] flat-remix-gnome: 20250330 -> 20250413 --- pkgs/by-name/fl/flat-remix-gnome/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/fl/flat-remix-gnome/package.nix b/pkgs/by-name/fl/flat-remix-gnome/package.nix index 2be7cc4aeb98..a6eb2759aecc 100644 --- a/pkgs/by-name/fl/flat-remix-gnome/package.nix +++ b/pkgs/by-name/fl/flat-remix-gnome/package.nix @@ -8,18 +8,18 @@ let # make install will use dconf to find desktop background file uri. # consider adding an args to allow specify pictures manually. - # https://github.com/daniruiz/flat-remix-gnome/blob/20250330/Makefile#L38 + # https://github.com/daniruiz/flat-remix-gnome/blob/20250413/Makefile#L38 fake-dconf = writeScriptBin "dconf" "echo -n"; in stdenv.mkDerivation rec { pname = "flat-remix-gnome"; - version = "20250330"; + version = "20250413"; src = fetchFromGitHub { owner = "daniruiz"; repo = "flat-remix-gnome"; rev = version; - hash = "sha256-Ho2tqJgitSdk/i2jH5jhD3XLyy6BXUhyhb6UV7g1waM="; + hash = "sha256-NgRqpL2bqdgiLfs08htqAsTFAbi7E+G/R0aBFpE9bmc="; }; nativeBuildInputs = [ @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; # make install will back up this file, it will fail if the file doesn't exist. - # https://github.com/daniruiz/flat-remix-gnome/blob/20250330/Makefile#L56 + # https://github.com/daniruiz/flat-remix-gnome/blob/20250413/Makefile#L56 preInstall = '' mkdir -p $out/share/gnome-shell/ touch $out/share/gnome-shell/gnome-shell-theme.gresource From 8bb8f152342e7c0bad83d091f2b9273661dce0e3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 14 Apr 2025 13:50:55 +0000 Subject: [PATCH 031/210] moodle: 4.5.3 -> 5.0 --- pkgs/servers/web-apps/moodle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/web-apps/moodle/default.nix b/pkgs/servers/web-apps/moodle/default.nix index 062d4fd08a5b..5cc53b5e5f91 100644 --- a/pkgs/servers/web-apps/moodle/default.nix +++ b/pkgs/servers/web-apps/moodle/default.nix @@ -8,7 +8,7 @@ }: let - version = "4.5.3"; + version = "5.0"; versionParts = lib.take 2 (lib.splitVersion version); # 4.2 -> 402, 3.11 -> 311 @@ -95,7 +95,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://download.moodle.org/download.php/direct/stable${stableVersion}/${pname}-${version}.tgz"; - hash = "sha256-xFqRM/g4OCPH7EkfDU3LYDZRSTqbdc6jA+nYsSH2K+0="; + hash = "sha256-8o9qRRdGkdLs0ZsHP8Hjv4LATKmXNwBY3yny+cQz2Z4="; }; phpConfig = writeText "config.php" '' From a1cd84566c6ebd2f6574291522f18b7020ccb2ec Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 14 Apr 2025 18:45:12 +0000 Subject: [PATCH 032/210] xlights: 2025.04 -> 2025.05 --- pkgs/by-name/xl/xlights/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/xl/xlights/package.nix b/pkgs/by-name/xl/xlights/package.nix index 7ce354eb2e93..c7251e5f3843 100644 --- a/pkgs/by-name/xl/xlights/package.nix +++ b/pkgs/by-name/xl/xlights/package.nix @@ -6,11 +6,11 @@ appimageTools.wrapType2 rec { pname = "xlights"; - version = "2025.04"; + version = "2025.05"; src = fetchurl { url = "https://github.com/smeighan/xLights/releases/download/${version}/xLights-${version}-x86_64.AppImage"; - hash = "sha256-YpFOQs+fDHTTWOkkw8dqKoFOVO998/nq2PUOjjA303A="; + hash = "sha256-uutiM/kLsvNdDi08e5DyyTYGYwUe4UZMyTS1P0ijUP0="; }; meta = { From 3e9c50989375ad3042c969d87d035335059da284 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 15 Apr 2025 00:41:25 +0000 Subject: [PATCH 033/210] alsa-tools: 1.2.11 -> 1.2.14 --- pkgs/by-name/al/alsa-tools/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/al/alsa-tools/package.nix b/pkgs/by-name/al/alsa-tools/package.nix index 222a11242112..82f238d16190 100644 --- a/pkgs/by-name/al/alsa-tools/package.nix +++ b/pkgs/by-name/al/alsa-tools/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "alsa-tools"; - version = "1.2.11"; + version = "1.2.14"; src = fetchurl { url = "mirror://alsa/tools/alsa-tools-${finalAttrs.version}.tar.bz2"; - hash = "sha256-CRXJY0pQL9NlXKnFdNJZvJ55mD2R1Frqz/bzwA+K4+k="; + hash = "sha256-+u9v3TnsecmlRz3GOqG2Mxv3ZkqdRSoKgZjOxwFsvG8="; }; nativeBuildInputs = [ From ea36522f064056d0f199120e8f587aa812ef2820 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 15 Apr 2025 19:31:58 +0000 Subject: [PATCH 034/210] libcgroup: 3.1 -> 3.2.0 --- pkgs/by-name/li/libcgroup/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/li/libcgroup/package.nix b/pkgs/by-name/li/libcgroup/package.nix index a796c9f5b9f0..69f2238df1b8 100644 --- a/pkgs/by-name/li/libcgroup/package.nix +++ b/pkgs/by-name/li/libcgroup/package.nix @@ -11,14 +11,14 @@ stdenv.mkDerivation rec { pname = "libcgroup"; - version = "3.1"; + version = "3.2.0"; src = fetchFromGitHub { owner = "libcgroup"; repo = "libcgroup"; rev = "v${version}"; fetchSubmodules = true; - hash = "sha256-CnejQcOyW3QzHuvsAdKe4M4XgmG9ufRaEBdO48+8ZqQ="; + hash = "sha256-kWW9ID/eYZH0O/Ge8pf3Cso4yu644R5EiQFYfZMcizs="; }; nativeBuildInputs = [ From e9a705fc9629cf09cec4ddf20c986bb45b240289 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 15 Apr 2025 19:56:03 +0000 Subject: [PATCH 035/210] touchosc: 1.3.9.226 -> 1.4.0.230 --- pkgs/by-name/to/touchosc/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/to/touchosc/package.nix b/pkgs/by-name/to/touchosc/package.nix index e34506ff001e..2ccad4bc7d82 100644 --- a/pkgs/by-name/to/touchosc/package.nix +++ b/pkgs/by-name/to/touchosc/package.nix @@ -46,7 +46,7 @@ in stdenv.mkDerivation rec { pname = "touchosc"; - version = "1.3.9.226"; + version = "1.4.0.230"; suffix = { @@ -60,9 +60,9 @@ stdenv.mkDerivation rec { url = "https://hexler.net/pub/${pname}/${pname}-${version}-${suffix}.deb"; hash = { - aarch64-linux = "sha256-LMTOahmA61uSMgs0wBNMzDjT7SWUL5Bd5r1fgcSDWZo="; - armv7l-linux = "sha256-0zF+Pn4Yj3vCGUMNY5+TY3iUAu4yN/dpL926oZjWfoQ="; - x86_64-linux = "sha256-myyb7VixEg+99r5H6G0GRusm8ulBw2l1/vgpFI+8vAQ="; + aarch64-linux = "sha256-RXv5j542pLApvp5y9EG6I/WWywoCFZx/F71mKusBSv4="; + armv7l-linux = "sha256-5ySPBbB51tQjrhLpHzoEb5EPDv4nDGJL/hKQOSl3/YI="; + x86_64-linux = "sha256-v7ePfkKxM/yu3KVQfDaK3dMij2TNfLY34ox5/dHJgGI="; } .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); }; From 4fd25226bc970444d8e9ef976d97e58a14ab0b09 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 16 Apr 2025 02:21:16 +0000 Subject: [PATCH 036/210] tomcat9: 9.0.102 -> 9.0.104 --- pkgs/servers/http/tomcat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/tomcat/default.nix b/pkgs/servers/http/tomcat/default.nix index 11b852f86af7..7a12273fc5db 100644 --- a/pkgs/servers/http/tomcat/default.nix +++ b/pkgs/servers/http/tomcat/default.nix @@ -60,8 +60,8 @@ let in { tomcat9 = common { - version = "9.0.102"; - hash = "sha256-I+CjsW1ToSHIyGsOpOaWfRpKtonM9kkM4J6uV6w5R4c="; + version = "9.0.104"; + hash = "sha256-+hl1HI+BspTd40atk1F73thPQIhcRC4KcTDamCoiq64="; }; tomcat10 = common { From 3f50836d724a110f545d1e6d3045d1e2ad730a74 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 16 Apr 2025 05:05:44 +0000 Subject: [PATCH 037/210] jitsi-meet-prosody: 1.0.8499 -> 1.0.8542 --- pkgs/by-name/ji/jitsi-meet-prosody/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ji/jitsi-meet-prosody/package.nix b/pkgs/by-name/ji/jitsi-meet-prosody/package.nix index 3f7813b5f9e8..58b57a4422b3 100644 --- a/pkgs/by-name/ji/jitsi-meet-prosody/package.nix +++ b/pkgs/by-name/ji/jitsi-meet-prosody/package.nix @@ -8,10 +8,10 @@ stdenv.mkDerivation rec { pname = "jitsi-meet-prosody"; - version = "1.0.8499"; + version = "1.0.8542"; src = fetchurl { url = "https://download.jitsi.org/stable/${pname}_${version}-1_all.deb"; - sha256 = "U+Xy0uFdH4vYx9GYuwWD5o/K6pMRlqM0QJdWFBJXNls="; + sha256 = "dVqKnDq8rNmLbhMUvDGAT2pKLPZjW4ZXUwvz1wxM2Rs="; }; nativeBuildInputs = [ dpkg ]; From be949796b800d4e41c3cb6d98275314354ba85f4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 16 Apr 2025 12:00:25 +0000 Subject: [PATCH 038/210] vscode-extensions.ms-dotnettools.csdevkit: 1.18.23 -> 1.18.25 --- .../extensions/ms-dotnettools.csdevkit/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csdevkit/default.nix b/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csdevkit/default.nix index 1094edea1553..9fc62ecad5a5 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csdevkit/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csdevkit/default.nix @@ -14,19 +14,19 @@ let { x86_64-linux = { arch = "linux-x64"; - hash = "sha256-5B2LAV5azD1mGDFWnxIOYjyyJMXxqxyL5qP0zs6jWgs="; + hash = "sha256-NTmo45hhvVp5atYWt3046Fe7AtHouH6UBF/FPUllIQQ="; }; aarch64-linux = { arch = "linux-arm64"; - hash = "sha256-6tmHa8XbuNLheUzY8pr6oEJlkUJpeCeT3O7xfo2Iqls="; + hash = "sha256-7K7i+4NtoTmwT1a3dIBF7M2oXyqc66Evos8q1B1RWkk="; }; x86_64-darwin = { arch = "darwin-x64"; - hash = "sha256-KRJ148+N3Hzht1GgnO0s5Mv27q+onPyZlY9myXw3zjg="; + hash = "sha256-O/bpKFoCqtzwdNjwWA4WfaeFPUdZtfn14opiSXtjD90="; }; aarch64-darwin = { arch = "darwin-arm64"; - hash = "sha256-vmtE6oeLs1B9s69yaOHASdFKznV1p3v+SsJUAJrwUrU="; + hash = "sha256-9kNKHg8lpXf94RT1/oYYeSOX0uHqjpg+zW64NNMQs7A="; }; } .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}") @@ -36,7 +36,7 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "csdevkit"; publisher = "ms-dotnettools"; - version = "1.18.23"; + version = "1.18.25"; inherit (extInfo) hash arch; }; sourceRoot = "extension"; # This has more than one folder. From c8959deca74ae535c9e66291ffc77b40d40cb92d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 17 Apr 2025 11:52:58 +0000 Subject: [PATCH 039/210] jitsi-videobridge: 2.3-215-gbee626bf -> 2.3-220-g7cda0a66 --- pkgs/by-name/ji/jitsi-videobridge/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ji/jitsi-videobridge/package.nix b/pkgs/by-name/ji/jitsi-videobridge/package.nix index 6f88c482768e..dbe043053052 100644 --- a/pkgs/by-name/ji/jitsi-videobridge/package.nix +++ b/pkgs/by-name/ji/jitsi-videobridge/package.nix @@ -11,10 +11,10 @@ let pname = "jitsi-videobridge2"; - version = "2.3-215-gbee626bf"; + version = "2.3-220-g7cda0a66"; src = fetchurl { url = "https://download.jitsi.org/stable/${pname}_${version}-1_all.deb"; - sha256 = "naporhTId7igQ2OHEiwmP9t1MPniBOehWhuRAFQJSVE="; + sha256 = "5jl2K3EL7zS3hw14LuK6WqL9SDgvLN+pZlRqJew0LJE="; }; in stdenv.mkDerivation { From d0922d8f6e5a11664587b601170c297fefee24e9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 17 Apr 2025 17:05:01 +0000 Subject: [PATCH 040/210] yourkit-java: 2025.3-b134 -> 2025.3-b135 --- pkgs/by-name/yo/yourkit-java/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/yo/yourkit-java/package.nix b/pkgs/by-name/yo/yourkit-java/package.nix index 30e7202c3c2e..a08c5f12dc33 100644 --- a/pkgs/by-name/yo/yourkit-java/package.nix +++ b/pkgs/by-name/yo/yourkit-java/package.nix @@ -10,7 +10,7 @@ let vPath = v: lib.elemAt (lib.splitString "-" v) 0; - version = "2025.3-b134"; + version = "2025.3-b135"; arches = { aarch64-linux = "arm64"; @@ -20,8 +20,8 @@ let arch = arches.${stdenvNoCC.targetPlatform.system} or (throw "Unsupported system"); hashes = { - arm64 = "sha256-n6G04Gf+jIRfamo0B+EAfpNT0YDT0Mt9PTnxItlC06c="; - x64 = "sha256-RHGJd3GkP2bA9c/fhfFd9JLFK90mqt5hCbZmN0Ht0jE="; + arm64 = "sha256-ljpT3m4+enGpmiNGLIM/Gj/H9stfwQG3Xbj35EyhBDY="; + x64 = "sha256-61TXQ2GiI0CdRH/4nRE+D0uYcR/Sq23fgmTUWhj75QM="; }; desktopItem = makeDesktopItem { From d38afb7947c5587c80c6d240e2c2d603e7a4db89 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 17 Apr 2025 21:44:23 +0000 Subject: [PATCH 041/210] pulseaudio-module-xrdp: 0.7 -> 0.8 --- pkgs/by-name/pu/pulseaudio-module-xrdp/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pu/pulseaudio-module-xrdp/package.nix b/pkgs/by-name/pu/pulseaudio-module-xrdp/package.nix index ceec2b35af4c..c25bb4d5bbb3 100644 --- a/pkgs/by-name/pu/pulseaudio-module-xrdp/package.nix +++ b/pkgs/by-name/pu/pulseaudio-module-xrdp/package.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation rec { pname = "pulseaudio-module-xrdp"; - version = "0.7"; + version = "0.8"; src = fetchFromGitHub { owner = "neutrinolabs"; repo = pname; rev = "v${version}"; - hash = "sha256-GT0kBfq6KvuiX30B9JzCiUxgSm9E6IhdJuQKKKprDCE="; + hash = "sha256-R1ZPifEjlueTJma6a0UiGdiNwTSa5+HnW4w9qGrauxE="; }; preConfigure = '' From 3a6de0d71e9798b23ec143a94111380f52ca1c70 Mon Sep 17 00:00:00 2001 From: emaryn Date: Fri, 18 Apr 2025 06:39:40 +0800 Subject: [PATCH 042/210] cdo: 2.4.2 -> 2.5.1 --- pkgs/by-name/cd/cdo/package.nix | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/cd/cdo/package.nix b/pkgs/by-name/cd/cdo/package.nix index 6fb2fb68abe7..e3f10732ed21 100644 --- a/pkgs/by-name/cd/cdo/package.nix +++ b/pkgs/by-name/cd/cdo/package.nix @@ -15,9 +15,14 @@ enable_cxx ? false, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "cdo"; - version = "2.4.2"; + version = "2.5.1"; + + src = fetchurl { + url = "https://code.mpimet.mpg.de/attachments/download/29864/cdo-${finalAttrs.version}.tar.gz"; + hash = "sha256-QYv5HoZMv+VHw8jhUNMUGc+nFefTRVCMVZGxq9pUV9E="; + }; # Dependencies buildInputs = [ @@ -27,11 +32,6 @@ stdenv.mkDerivation rec { python3 ]; - src = fetchurl { - url = "https://code.mpimet.mpg.de/attachments/download/29481/${pname}-${version}.tar.gz"; - sha256 = "sha256-TfH+K4+S9Uwn6585nt+rQNkyIAWmcyyhUk71wWJ6xOc="; - }; - configureFlags = [ "--with-netcdf=${netcdf}" @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { ++ lib.optional enable_all_static "--enable-all-static" ++ lib.optional enable_cxx "--enable-cxx"; - meta = with lib; { + meta = { description = "Collection of command line Operators to manipulate and analyse Climate and NWP model Data"; mainProgram = "cdo"; longDescription = '' @@ -50,8 +50,8 @@ stdenv.mkDerivation rec { There are more than 600 operators available. ''; homepage = "https://code.mpimet.mpg.de/projects/cdo/"; - license = licenses.bsd3; - maintainers = [ maintainers.ltavard ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.ltavard ]; + platforms = with lib.platforms; linux ++ darwin; }; -} +}) From 1d46e3f451ae0fa9cff307de7ecb86d6e727f68a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 18 Apr 2025 10:56:13 +0000 Subject: [PATCH 043/210] flannel: 0.26.6 -> 0.26.7 --- pkgs/tools/networking/flannel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/flannel/default.nix b/pkgs/tools/networking/flannel/default.nix index 9491cddf3838..984e3688b81c 100644 --- a/pkgs/tools/networking/flannel/default.nix +++ b/pkgs/tools/networking/flannel/default.nix @@ -7,7 +7,7 @@ buildGoModule rec { pname = "flannel"; - version = "0.26.6"; + version = "0.26.7"; rev = "v${version}"; vendorHash = "sha256-cD5NDK0jb1dKhNRiYTaU36TM3CdkwScZ24AtkaEja4k="; @@ -16,7 +16,7 @@ buildGoModule rec { inherit rev; owner = "flannel-io"; repo = "flannel"; - sha256 = "sha256-IVez0Df+OAWSoIQ6cgBNG5qC48T7mhWN2OVRaVxbAr4="; + sha256 = "sha256-RuahJrJaqguyXOr46KLw04To+TDjpVsLCJ0U/yz+1nI="; }; ldflags = [ "-X github.com/flannel-io/flannel/pkg/version.Version=${rev}" ]; From b0617ca548e68d843c7657d4e1c5cf95f2db99da Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 18 Apr 2025 12:56:59 +0000 Subject: [PATCH 044/210] nvidia-modprobe: 570.133.07 -> 575.51.02 --- pkgs/by-name/nv/nvidia-modprobe/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/nv/nvidia-modprobe/package.nix b/pkgs/by-name/nv/nvidia-modprobe/package.nix index 594e92923936..49fe0a66051a 100644 --- a/pkgs/by-name/nv/nvidia-modprobe/package.nix +++ b/pkgs/by-name/nv/nvidia-modprobe/package.nix @@ -6,13 +6,13 @@ }: stdenv.mkDerivation rec { pname = "nvidia-modprobe"; - version = "570.133.07"; + version = "575.51.02"; src = fetchFromGitHub { owner = "NVIDIA"; repo = "nvidia-modprobe"; rev = version; - hash = "sha256-6/1g66Mr0Ru4V3JMTRXet1aiNa0wrTIGw84QPrCO85c="; + hash = "sha256-3iQySxYLG+GwtACeY7n5IwUSc0dVVgu6S0y+XMmv7AU="; }; nativeBuildInputs = [ gnum4 ]; From 90c0fa0993a52f481ce867c76b29c97809bb5780 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 18 Apr 2025 16:51:44 +0000 Subject: [PATCH 045/210] jicofo: 1.0-1124 -> 1.0-1128 --- pkgs/by-name/ji/jicofo/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ji/jicofo/package.nix b/pkgs/by-name/ji/jicofo/package.nix index ba920b5286dd..4e32d50e62d1 100644 --- a/pkgs/by-name/ji/jicofo/package.nix +++ b/pkgs/by-name/ji/jicofo/package.nix @@ -9,10 +9,10 @@ let pname = "jicofo"; - version = "1.0-1124"; + version = "1.0-1128"; src = fetchurl { url = "https://download.jitsi.org/stable/${pname}_${version}-1_all.deb"; - sha256 = "pnSp9naOGC4V8MlrBVZ9e4Qk4GZSQdepS2xocQSfw30="; + sha256 = "pWTOAvsvWGWgt4q9jNyp0faZrbRx0De3R5U5j+GNTDA="; }; in stdenv.mkDerivation { From b6e09058193963b06873004a3a2a35d34f77acec Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 18 Apr 2025 19:18:23 +0000 Subject: [PATCH 046/210] nfdump: 1.7.5 -> 1.7.6 --- pkgs/by-name/nf/nfdump/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/nf/nfdump/package.nix b/pkgs/by-name/nf/nfdump/package.nix index c72bdb62a2e3..67dd1ffd8bbe 100644 --- a/pkgs/by-name/nf/nfdump/package.nix +++ b/pkgs/by-name/nf/nfdump/package.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation rec { pname = "nfdump"; - version = "1.7.5"; + version = "1.7.6"; src = fetchFromGitHub { owner = "phaag"; repo = "nfdump"; tag = "v${version}"; - hash = "sha256-1S55WVVHczYBDGwTxGZr+ND+e4a892jkTINlvIR2xgI="; + hash = "sha256-4iyoQAjOQW4KNJbRmdisdecuOz+DFvQGEKgq8cq7GDI="; }; nativeBuildInputs = [ From 1f720a0986f78965c29e591bffcbbffbf5e14d13 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 18 Apr 2025 19:27:52 +0000 Subject: [PATCH 047/210] libvpl: 2.14.0 -> 2.15.0 --- pkgs/by-name/li/libvpl/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/li/libvpl/package.nix b/pkgs/by-name/li/libvpl/package.nix index 25304bc909e1..319373b62dfc 100644 --- a/pkgs/by-name/li/libvpl/package.nix +++ b/pkgs/by-name/li/libvpl/package.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "libvpl"; - version = "2.14.0"; + version = "2.15.0"; src = fetchFromGitHub { owner = "intel"; repo = "libvpl"; rev = "v${finalAttrs.version}"; - hash = "sha256-51kl9w1xqldQXGWbk6bveS2jMZWQOz/gYP/hPXDk/7M="; + hash = "sha256-aCoyIHgX3ftlk0CKg/cXNAVjuGI8GMT358GoiyaNjnI="; }; nativeBuildInputs = [ From de2f1ce92bfaaea5993ce7ff60c035a05edc96a4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 19 Apr 2025 00:10:56 +0000 Subject: [PATCH 048/210] microsoft-edge: 135.0.3179.54 -> 135.0.3179.85 --- pkgs/by-name/mi/microsoft-edge/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/mi/microsoft-edge/package.nix b/pkgs/by-name/mi/microsoft-edge/package.nix index 90f56e00408d..2be630c2a6f0 100644 --- a/pkgs/by-name/mi/microsoft-edge/package.nix +++ b/pkgs/by-name/mi/microsoft-edge/package.nix @@ -174,11 +174,11 @@ in stdenv.mkDerivation (finalAttrs: { pname = "microsoft-edge"; - version = "135.0.3179.54"; + version = "135.0.3179.85"; src = fetchurl { url = "https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_${finalAttrs.version}-1_amd64.deb"; - hash = "sha256-AppUIXOFouGRxMM6ioZq0cglKkNh811n+36z5yvVAuc="; + hash = "sha256-x1YpKsvj2Jx1/VE13eE/aCkv+b7rGOQo4xcRYu2GQGA="; }; # With strictDeps on, some shebangs were not being patched correctly From 19203bb5ff8953cf983f66e5425c3380c0f07a89 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 19 Apr 2025 02:18:51 +0000 Subject: [PATCH 049/210] dwarfs: 0.11.2 -> 0.12.2 --- pkgs/by-name/dw/dwarfs/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/dw/dwarfs/package.nix b/pkgs/by-name/dw/dwarfs/package.nix index a0494b17971b..240fbc2cdcf2 100644 --- a/pkgs/by-name/dw/dwarfs/package.nix +++ b/pkgs/by-name/dw/dwarfs/package.nix @@ -33,14 +33,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "dwarfs"; - version = "0.11.2"; + version = "0.12.2"; src = fetchFromGitHub { owner = "mhx"; repo = "dwarfs"; tag = "v${finalAttrs.version}"; fetchSubmodules = true; - hash = "sha256-6dsBWQFYjxg1oxcbc7pzK69plbCIaOW2QFzhmYrm0ck="; + hash = "sha256-ZQ93OQ0HQ/6UP8vNe2okRMqkLX96o5+ruoWoZ52zsl0="; }; cmakeFlags = [ From 2670e16140b501b1889c6407afa84681367e3f21 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 19 Apr 2025 03:13:42 +0000 Subject: [PATCH 050/210] webcord: 4.10.4 -> 4.10.5 --- pkgs/by-name/we/webcord/package.nix | 6 +++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/we/webcord/package.nix b/pkgs/by-name/we/webcord/package.nix index f7cf9d28ac9f..8891077bdd5a 100644 --- a/pkgs/by-name/we/webcord/package.nix +++ b/pkgs/by-name/we/webcord/package.nix @@ -11,16 +11,16 @@ buildNpmPackage rec { pname = "webcord"; - version = "4.10.4"; + version = "4.10.5"; src = fetchFromGitHub { owner = "SpacingBat3"; repo = "WebCord"; tag = "v${version}"; - hash = "sha256-rBOQutAPmNiw9bJ3nYSddbAwSqYHAlSNHpkMvxzmUnA="; + hash = "sha256-PSDPziby0KYo7KU656NgTJq7TUn4blNcW9/ontWhEKE="; }; - npmDepsHash = "sha256-CjXEwFRGVjJv+kuyq9IZHdiYKJ6lbSDZnIxBer3qnOI="; + npmDepsHash = "sha256-xaGt/Y9LovSKNFur0wv2rF+EtYAL5Kn/lYpcY3Gd4zk="; makeCacheWritable = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5d5032c2ffd0..ae15a81d5f55 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16670,7 +16670,7 @@ with pkgs; webcamoid = qt6Packages.callPackage ../applications/video/webcamoid { }; - webcord = callPackage ../by-name/we/webcord/package.nix { electron = electron_34; }; + webcord = callPackage ../by-name/we/webcord/package.nix { electron = electron_35; }; webcord-vencord = callPackage ../by-name/we/webcord-vencord/package.nix { electron = electron_33; }; From 3e8178e3d4f64782b0415701f2af7e1e930fa4a9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 19 Apr 2025 04:11:04 +0000 Subject: [PATCH 051/210] seamly2d: 2025.3.25.1924 -> 2025.4.14.211 --- pkgs/applications/graphics/seamly2d/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/seamly2d/default.nix b/pkgs/applications/graphics/seamly2d/default.nix index 2b6103709180..e72238dfd5b2 100644 --- a/pkgs/applications/graphics/seamly2d/default.nix +++ b/pkgs/applications/graphics/seamly2d/default.nix @@ -24,13 +24,13 @@ let in stdenv.mkDerivation rec { pname = "seamly2d"; - version = "2025.3.25.1924"; + version = "2025.4.14.211"; src = fetchFromGitHub { owner = "FashionFreedom"; repo = "Seamly2D"; tag = "v${version}"; - hash = "sha256-hBXdf/r3hXSjy6Vp5SjfOcefxj/aP0La4LTiyOESzmQ="; + hash = "sha256-Zs1zinWWbodF340fo18HbRD//JIm/fhEgapAcR0JnzA="; }; buildInputs = [ From 9fb95bb222918723c78a964da17ca255eaa0bdbc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 19 Apr 2025 05:25:05 +0000 Subject: [PATCH 052/210] tremotesf: 2.7.5 -> 2.8.2 --- pkgs/by-name/tr/tremotesf/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tr/tremotesf/package.nix b/pkgs/by-name/tr/tremotesf/package.nix index b901c75e7880..155e85c8ea34 100644 --- a/pkgs/by-name/tr/tremotesf/package.nix +++ b/pkgs/by-name/tr/tremotesf/package.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "tremotesf"; - version = "2.7.5"; + version = "2.8.2"; src = fetchFromGitHub { owner = "equeim"; repo = "tremotesf2"; tag = finalAttrs.version; - hash = "sha256-LJ73ZynofPOMS5rSohJSY94vSQvGfNiNFRyGu6LPfU0="; + hash = "sha256-o6GSuRKO2LNpaFUuSu6VUeZN/blfpsz/piE7RZ47YfI="; # We need this for src/libtremotesf fetchSubmodules = true; }; From 34cec80a783d468b89245e583812cfba50f67a44 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 19 Apr 2025 06:10:30 +0000 Subject: [PATCH 053/210] heptabase: 1.55.1 -> 1.55.6 --- pkgs/by-name/he/heptabase/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/he/heptabase/package.nix b/pkgs/by-name/he/heptabase/package.nix index a196dcfd7310..fa75316edd19 100644 --- a/pkgs/by-name/he/heptabase/package.nix +++ b/pkgs/by-name/he/heptabase/package.nix @@ -5,10 +5,10 @@ }: let pname = "heptabase"; - version = "1.55.1"; + version = "1.55.6"; src = fetchurl { url = "https://github.com/heptameta/project-meta/releases/download/v${version}/Heptabase-${version}.AppImage"; - hash = "sha256-m18EUpcxUW5hyhFYLhHZqIEStqzsyss7T4TelAjw/eQ="; + hash = "sha256-Gb+jjujv/mjHCpk5p5UG6pO9rh7Dswou8h51FpsqLek="; }; appimageContents = appimageTools.extractType2 { inherit pname version src; }; From e28d74db121e891f581d27671e0b79e316b109d0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 19 Apr 2025 10:39:46 +0000 Subject: [PATCH 054/210] discord-canary: 0.0.621 -> 0.0.649 --- .../networking/instant-messengers/discord/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/discord/default.nix b/pkgs/applications/networking/instant-messengers/discord/default.nix index 257976552302..93f7a700a68e 100644 --- a/pkgs/applications/networking/instant-messengers/discord/default.nix +++ b/pkgs/applications/networking/instant-messengers/discord/default.nix @@ -11,7 +11,7 @@ let { stable = "0.0.91"; ptb = "0.0.136"; - canary = "0.0.621"; + canary = "0.0.649"; development = "0.0.73"; } else @@ -34,7 +34,7 @@ let }; canary = fetchurl { url = "https://canary.dl2.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz"; - hash = "sha256-Jz7YIH107n89N/wQfhs9QfEqWCYO+BtjHrgSvk7xG+o="; + hash = "sha256-FXwnE3knSD6U6CxkewplwZJr3F8vUBDAztMDHjtV1Jw="; }; development = fetchurl { url = "https://development.dl2.discordapp.net/apps/linux/${version}/discord-development-${version}.tar.gz"; From d66008d555b9d6b31c250525a06c1ff0d602090a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 19 Apr 2025 18:25:26 +0000 Subject: [PATCH 055/210] youtrack: 2025.1.67057 -> 2025.1.71685 --- pkgs/by-name/yo/youtrack/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/yo/youtrack/package.nix b/pkgs/by-name/yo/youtrack/package.nix index 7e8c01d9db24..e4414e30b4d9 100644 --- a/pkgs/by-name/yo/youtrack/package.nix +++ b/pkgs/by-name/yo/youtrack/package.nix @@ -10,11 +10,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "youtrack"; - version = "2025.1.67057"; + version = "2025.1.71685"; src = fetchzip { url = "https://download.jetbrains.com/charisma/youtrack-${finalAttrs.version}.zip"; - hash = "sha256-IWzyVH21mW6KcCL4WbpeBTGs+P+RjeA2gm5uq1r94Jo="; + hash = "sha256-wgVDmUtP/XPl/iHNm8EbDmPs9IDyJ01daIVGINSQ4PA="; }; nativeBuildInputs = [ makeBinaryWrapper ]; From b1873c2831fb3e0dd93550d4ae201debd2fb89d1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 19 Apr 2025 20:08:22 +0000 Subject: [PATCH 056/210] sc-controller: 0.5.1 -> 0.5.2 --- pkgs/by-name/sc/sc-controller/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sc/sc-controller/package.nix b/pkgs/by-name/sc/sc-controller/package.nix index 33a4470d494c..f8d220639991 100644 --- a/pkgs/by-name/sc/sc-controller/package.nix +++ b/pkgs/by-name/sc/sc-controller/package.nix @@ -19,13 +19,13 @@ python3Packages.buildPythonApplication rec { pname = "sc-controller"; - version = "0.5.1"; + version = "0.5.2"; src = fetchFromGitHub { owner = "C0rn3j"; repo = "sc-controller"; tag = "v${version}"; - hash = "sha256-2t4q0pKwt1wJIHgTr37voqY4tDoDMAoEuLpFetuENHI="; + hash = "sha256-w7jVh0d8u6csXOQ6pjUCSD3R/qFVqTa2gcGa47pqn/0="; }; nativeBuildInputs = [ From b981db1e93134e7935ecfe0a84093ae9c5d00302 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 20 Apr 2025 04:04:55 +0000 Subject: [PATCH 057/210] octavePackages.instrument-control: 0.9.4 -> 0.9.5 --- .../development/octave-modules/instrument-control/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/octave-modules/instrument-control/default.nix b/pkgs/development/octave-modules/instrument-control/default.nix index 34a9644cb1a1..033d04f6b131 100644 --- a/pkgs/development/octave-modules/instrument-control/default.nix +++ b/pkgs/development/octave-modules/instrument-control/default.nix @@ -6,11 +6,11 @@ buildOctavePackage rec { pname = "instrument-control"; - version = "0.9.4"; + version = "0.9.5"; src = fetchurl { url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; - sha256 = "sha256-AfrQQy1EuMpO6qGYz+sh4EW5eYi6fE6KaRxro0psSN8="; + sha256 = "sha256-Qm1aF+dbhwrDUSh8ViJHCZIc0DiZ1jI117TnSknqzX0="; }; meta = with lib; { From 99bdbeb29a9a0698164e6d5047a508c8c7cb6673 Mon Sep 17 00:00:00 2001 From: emaryn Date: Tue, 22 Apr 2025 01:28:32 +0800 Subject: [PATCH 058/210] dell-command-configure: 4.11.0-6 -> 5.1.0-6 --- .../de/dell-command-configure/package.nix | 32 +++++++++++-------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/pkgs/by-name/de/dell-command-configure/package.nix b/pkgs/by-name/de/dell-command-configure/package.nix index d7df3dcf31ea..207eb1cf891a 100644 --- a/pkgs/by-name/de/dell-command-configure/package.nix +++ b/pkgs/by-name/de/dell-command-configure/package.nix @@ -1,6 +1,6 @@ { - stdenv, lib, + stdenv, fetchurl, dpkg, autoPatchelfHook, @@ -17,20 +17,20 @@ # the dependencies from other pkgs. let - version = "4.11.0-6"; + version = "5.1.0-6"; - unpacked = stdenv.mkDerivation rec { + unpacked = stdenv.mkDerivation (finalAttrs: { inherit version; pname = "dell-command-configure-unpacked"; src = fetchurl { urls = [ - "https://dl.dell.com/FOLDER10469726M/1/command-configure_${version}.ubuntu22_amd64.tar.gz" - "https://web.archive.org/web/20240228233129/https://dl.dell.com/FOLDER10469726M/1/command-configure_4.11.0-6.ubuntu22_amd64.tar.gz" + "https://dl.dell.com/FOLDER12705845M/1/command-configure_${version}.ubuntu24_amd64.tar.gz" + "https://web.archive.org/web/20250421172156/https://dl.dell.com/FOLDER12705845M/1/command-configure_5.1.0-6.ubuntu24_amd64.tar.gz" ]; # The CDN blocks the Curl user-agent, so set to blank instead. curlOpts = ''-A=""''; - hash = "sha256-Bwa4sYguYwEBKEJSP3wzHhzjuDeaGQN8fKeooWHX18E="; + hash = "sha256-MM6Djkz/VuVCLHGEji88Xq0vIV+AfqQkjNXz4zqFOtw="; }; dontBuild = true; @@ -38,8 +38,8 @@ let nativeBuildInputs = [ dpkg ]; unpackPhase = '' - tar -xzf ${src} - dpkg-deb -x command-configure_${version}.ubuntu22_amd64.deb command-configure + tar -xzf ${finalAttrs.src} + dpkg-deb -x command-configure_${version}.ubuntu24_amd64.deb command-configure dpkg-deb -x srvadmin-hapi_9.5.0_amd64.deb srvadmin-hapi ''; @@ -47,7 +47,7 @@ let mkdir $out cp -r . $out ''; - }; + }); # Contains a fopen() wrapper for finding the firmware package wrapperLibName = "wrapper-lib.so"; @@ -74,16 +74,20 @@ stdenv.mkDerivation { inherit version; pname = "dell-command-configure"; + nativeBuildInputs = [ autoPatchelfHook ]; + buildInputs = [ openssl (lib.getLib stdenv.cc.cc) ]; - nativeBuildInputs = [ autoPatchelfHook ]; + dontConfigure = true; src = unpacked; installPhase = '' + runHook preInstall + install -D -t $out/lib -m644 -v command-configure/opt/dell/dcc/libhapiintf.so install -D -t $out/lib -m644 -v command-configure/opt/dell/dcc/libsmbios_c.so.2 install -D -t $out/bin -m755 -v command-configure/opt/dell/dcc/cctk @@ -91,6 +95,8 @@ stdenv.mkDerivation { for lib in $(find srvadmin-hapi/opt/dell/srvadmin/lib64 -type l); do install -D -t $out/lib -m644 -v $lib done + + runHook postInstall ''; postFixup = '' @@ -104,11 +110,11 @@ stdenv.mkDerivation { $out/lib/* ''; - meta = with lib; { + meta = { description = "Configure BIOS settings on Dell laptops"; homepage = "https://www.dell.com/support/article/us/en/19/sln311302/dell-command-configure"; - license = licenses.unfree; - maintainers = with maintainers; [ ryangibb ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ ryangibb ]; platforms = [ "x86_64-linux" ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; From 43048aa9bd1caa22ecc0d83971b2d29466ab4760 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 21 Apr 2025 19:23:36 +0000 Subject: [PATCH 059/210] oneDNN: 3.7.2 -> 3.7.3 --- pkgs/by-name/on/oneDNN/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/on/oneDNN/package.nix b/pkgs/by-name/on/oneDNN/package.nix index e5d1de169101..e3855a3a57b5 100644 --- a/pkgs/by-name/on/oneDNN/package.nix +++ b/pkgs/by-name/on/oneDNN/package.nix @@ -11,13 +11,13 @@ # https://github.com/oneapi-src/oneDNN#oneapi-deep-neural-network-library-onednn stdenv.mkDerivation (finalAttrs: { pname = "oneDNN"; - version = "3.7.2"; + version = "3.7.3"; src = fetchFromGitHub { owner = "oneapi-src"; repo = "oneDNN"; rev = "v${finalAttrs.version}"; - hash = "sha256-buOrJOPI2Fe5fqyaFjC+Wai4BX2RhQ+41+VR2Kyi8+A="; + hash = "sha256-wOS/VBcP8VyuBAdXVNkTDtYizTQe00ZocW5p0PMqbr4="; }; outputs = [ From c91fdf266adf0fce898cf5e32373aa220e146b03 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 21 Apr 2025 20:25:24 +0000 Subject: [PATCH 060/210] ecs-agent: 1.91.2 -> 1.92.0 --- pkgs/by-name/ec/ecs-agent/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ec/ecs-agent/package.nix b/pkgs/by-name/ec/ecs-agent/package.nix index 2d4846946a6d..3c2ffdaa1d93 100644 --- a/pkgs/by-name/ec/ecs-agent/package.nix +++ b/pkgs/by-name/ec/ecs-agent/package.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "amazon-ecs-agent"; - version = "1.91.2"; + version = "1.92.0"; src = fetchFromGitHub { rev = "v${version}"; owner = "aws"; repo = pname; - hash = "sha256-7f1qJ9dgouhj+DGikdIzUREPraAA/1y/5lYA8fbIoJo="; + hash = "sha256-g0yIJ0W71UGgPZ5m/BaeTCOTAfQ6589wAvYZ15Izt8o="; }; vendorHash = null; From f372424e9ff2cf59faed74041efe232e5f3adf40 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 22 Apr 2025 01:17:54 +0000 Subject: [PATCH 061/210] kodiPackages.jurialmunkey: 0.2.21 -> 0.2.28 --- pkgs/applications/video/kodi/addons/jurialmunkey/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/kodi/addons/jurialmunkey/default.nix b/pkgs/applications/video/kodi/addons/jurialmunkey/default.nix index ee3e7679fbd2..f2513e7b7311 100644 --- a/pkgs/applications/video/kodi/addons/jurialmunkey/default.nix +++ b/pkgs/applications/video/kodi/addons/jurialmunkey/default.nix @@ -9,13 +9,13 @@ buildKodiAddon rec { pname = "jurialmunkey"; namespace = "script.module.jurialmunkey"; - version = "0.2.21"; + version = "0.2.28"; src = fetchFromGitHub { owner = "jurialmunkey"; repo = namespace; rev = "v${version}"; - hash = "sha256-vcYydVrcVJ7jaeFXCad7pgxvoZy63QLlRS3HO9GsmtU="; + hash = "sha256-3bT1mFzY28r3tzb5zrLKwLs83uotfKezI020SetJuso="; }; propagatedBuildInputs = [ From 34448e078fe44ff269e8610e38667ca489988d02 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 23 Apr 2025 04:00:27 +0000 Subject: [PATCH 062/210] nwjs-ffmpeg-prebuilt: 0.97.0 -> 0.98.2 --- pkgs/by-name/nw/nwjs-ffmpeg-prebuilt/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/nw/nwjs-ffmpeg-prebuilt/package.nix b/pkgs/by-name/nw/nwjs-ffmpeg-prebuilt/package.nix index ec73eaff2289..1edc91a41dc4 100644 --- a/pkgs/by-name/nw/nwjs-ffmpeg-prebuilt/package.nix +++ b/pkgs/by-name/nw/nwjs-ffmpeg-prebuilt/package.nix @@ -7,7 +7,7 @@ let bits = if stdenv.hostPlatform.is64bit then "x64" else "ia32"; - version = "0.97.0"; + version = "0.98.2"; in stdenv.mkDerivation { pname = "nwjs-ffmpeg-prebuilt"; @@ -16,8 +16,8 @@ stdenv.mkDerivation { src = let hashes = { - "x64" = "sha256-Z4AS8qjDgbXhpzLVspc4Y/78kdmwuqB2wtsjQ3MjMzE="; - "ia32" = "sha256-Z4AS8qjDgbXhpzLVspc4Y/78kdmwuqB2wtsjQ3MjMzE="; + "x64" = "sha256-Bx2Mz9RniryLdOFP11p+wp7o1b83LwbkOIXPYAXQdOk="; + "ia32" = "sha256-Bx2Mz9RniryLdOFP11p+wp7o1b83LwbkOIXPYAXQdOk="; }; in fetchurl { From 40e899a1992848d64f1d8062b13dc957db3521eb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 23 Apr 2025 05:01:10 +0000 Subject: [PATCH 063/210] vulkan-hdr-layer-kwin6: 0-unstable-2025-03-07 -> 0-unstable-2025-04-16 --- pkgs/by-name/vu/vulkan-hdr-layer-kwin6/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/vu/vulkan-hdr-layer-kwin6/package.nix b/pkgs/by-name/vu/vulkan-hdr-layer-kwin6/package.nix index 724e68737b93..73f95bb30fcd 100644 --- a/pkgs/by-name/vu/vulkan-hdr-layer-kwin6/package.nix +++ b/pkgs/by-name/vu/vulkan-hdr-layer-kwin6/package.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { pname = "vulkan-hdr-layer-kwin6"; - version = "0-unstable-2025-03-07"; + version = "0-unstable-2025-04-16"; depsBuildBuild = [ pkg-config ]; @@ -40,8 +40,8 @@ stdenv.mkDerivation { src = fetchFromGitHub { owner = "Zamundaaa"; repo = "VK_hdr_layer"; - rev = "7c0553d88b38e62eb7fd83f3d25f50733309c866"; - hash = "sha256-arJJWel6WooZ4SHwl0NXK44xOMgHMo1n++eJSVrone4="; + rev = "3b276e68136eb10825aa7cabd06abb324897f0e8"; + hash = "sha256-c3OLT2qMKAQnQYrTVhrs3BEVS55HoaeBijgzygz6zgs="; fetchSubmodules = true; }; From 97b0fcc6f95221ad8ad79bc85289f8900f7a159f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 23 Apr 2025 12:37:11 +0000 Subject: [PATCH 064/210] tqsl: 2.7.5 -> 2.8 --- pkgs/by-name/tq/tqsl/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tq/tqsl/package.nix b/pkgs/by-name/tq/tqsl/package.nix index 61ea5efac068..7ba2db907b0f 100644 --- a/pkgs/by-name/tq/tqsl/package.nix +++ b/pkgs/by-name/tq/tqsl/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { pname = "tqsl"; - version = "2.7.5"; + version = "2.8"; src = fetchurl { url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz"; - sha256 = "sha256-recq2FTyvmt5tDTjZRjQKWf5HgdkmTsMmRTWTfTPGbQ="; + sha256 = "sha256-zcC6T6FevoPsr9r/EKDCJhkzWImKxghVNo0eX9P7oNg="; }; nativeBuildInputs = [ From 4cf2c83bc2c2e7de9f6ab34e568e7910db5ff068 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 24 Apr 2025 05:30:48 +0000 Subject: [PATCH 065/210] molecule: 25.3.1 -> 25.4.0 --- pkgs/development/python-modules/molecule/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/molecule/default.nix b/pkgs/development/python-modules/molecule/default.nix index f6937b974e31..5aba9687badd 100644 --- a/pkgs/development/python-modules/molecule/default.nix +++ b/pkgs/development/python-modules/molecule/default.nix @@ -23,14 +23,14 @@ buildPythonPackage rec { pname = "molecule"; - version = "25.3.1"; + version = "25.4.0"; pyproject = true; disabled = pythonOlder "3.10"; src = fetchPypi { inherit pname version; - hash = "sha256-yHZpB8i4v+yI19Gl3xIyvUYGoMU9nLldOOhLRVppk6Y="; + hash = "sha256-xTHioQUfgn84eNzX1A1taGjaBm1GHvKLXo/t6l6T8Pk="; }; nativeBuildInputs = [ From 7a667a26b2a2445af6a1a7c5871ed95392e5dfbe Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 24 Apr 2025 07:39:15 +0000 Subject: [PATCH 066/210] kronosnet: 1.30 -> 1.31 --- pkgs/by-name/kr/kronosnet/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/kr/kronosnet/package.nix b/pkgs/by-name/kr/kronosnet/package.nix index dfaf1379c679..7bd2dd09ab6e 100644 --- a/pkgs/by-name/kr/kronosnet/package.nix +++ b/pkgs/by-name/kr/kronosnet/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation rec { pname = "kronosnet"; - version = "1.30"; + version = "1.31"; src = fetchFromGitHub { owner = "kronosnet"; repo = "kronosnet"; rev = "v${version}"; - sha256 = "sha256-Ydu7qS2Wuy5c5pCv1X8SdEIx8sTvfGusCJwltkb3YXQ="; + sha256 = "sha256-PZWaKrCy0S8d/x3GMh7X2wEiHwgiuEFpfCwKpbLvhsc="; }; nativeBuildInputs = [ From ebbdb9088b54b233dcf2ffcaa0d1f0142bbef70b Mon Sep 17 00:00:00 2001 From: Dimitar Nestorov <8790386+dimitarnestorov@users.noreply.github.com> Date: Thu, 24 Apr 2025 14:58:16 +0300 Subject: [PATCH 067/210] darwin.xcode: add 16.3 --- pkgs/os-specific/darwin/xcode/default.nix | 1 + pkgs/top-level/darwin-packages.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/os-specific/darwin/xcode/default.nix b/pkgs/os-specific/darwin/xcode/default.nix index a3b1ad7d8478..5670963b1091 100644 --- a/pkgs/os-specific/darwin/xcode/default.nix +++ b/pkgs/os-specific/darwin/xcode/default.nix @@ -102,6 +102,7 @@ lib.makeExtensible (self: { xcode_16 = requireXcode "16" "sha256-i/MMcEi5wCpe5+nGo6gUTsFFCoorORydAn7D/GClEdo="; xcode_16_1 = requireXcode "16.1" "sha256-yYg6NRRnYM/5X3hhVMfcXcdoiOV36fIongJNQ5nviD8="; xcode_16_2 = requireXcode "16.2" "sha256-wQjNuFZu/cN82mEEQbC1MaQt39jLLDsntsbnDidJFEs="; + xcode_16_3 = requireXcode "16.3" "sha256-hkIlRYUc1SD2lBwhRtqBGJapUIa+tdOyPKG19Su5OUU="; xcode = self."xcode_${ lib.replaceStrings [ "." ] [ "_" ] ( diff --git a/pkgs/top-level/darwin-packages.nix b/pkgs/top-level/darwin-packages.nix index 212ba54e57c4..5c2fd1618e81 100644 --- a/pkgs/top-level/darwin-packages.nix +++ b/pkgs/top-level/darwin-packages.nix @@ -256,6 +256,7 @@ makeScopeWithSplicing' { xcode_16 xcode_16_1 xcode_16_2 + xcode_16_3 xcode requireXcode ; From b3f6388b859981ef686ed8992131a2d0844aa8a1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 24 Apr 2025 13:22:01 +0000 Subject: [PATCH 068/210] nvidia-container-toolkit: 1.17.5 -> 1.17.6 --- pkgs/by-name/nv/nvidia-container-toolkit/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/nv/nvidia-container-toolkit/package.nix b/pkgs/by-name/nv/nvidia-container-toolkit/package.nix index b687027940ae..fbe48ffd735d 100644 --- a/pkgs/by-name/nv/nvidia-container-toolkit/package.nix +++ b/pkgs/by-name/nv/nvidia-container-toolkit/package.nix @@ -27,13 +27,13 @@ let in buildGoModule rec { pname = "nvidia-container-toolkit"; - version = "1.17.5"; + version = "1.17.6"; src = fetchFromGitHub { owner = "NVIDIA"; repo = pname; rev = "v${version}"; - hash = "sha256-vEo8agJ3jTaBokBjdGcO2naE457y8KPUAedC8vtwD1Y="; + hash = "sha256-MQQTQ6AaoA4VIAT7YPo3z6UbZuKHjOvu9sW2975TveM="; }; From e8044f1f62e4db8486769cd5feca780b116fe01f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 24 Apr 2025 16:18:00 +0000 Subject: [PATCH 069/210] handheld-daemon: 3.13.7 -> 3.15.3 --- pkgs/by-name/ha/handheld-daemon/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ha/handheld-daemon/package.nix b/pkgs/by-name/ha/handheld-daemon/package.nix index 77d8b3692f0a..c6cce870a516 100644 --- a/pkgs/by-name/ha/handheld-daemon/package.nix +++ b/pkgs/by-name/ha/handheld-daemon/package.nix @@ -16,14 +16,14 @@ }: python3Packages.buildPythonApplication rec { pname = "handheld-daemon"; - version = "3.13.7"; + version = "3.15.3"; pyproject = true; src = fetchFromGitHub { owner = "hhd-dev"; repo = "hhd"; tag = "v${version}"; - hash = "sha256-ISUu87Y1Ti6DepDAIMZREz1TkZlGlhkmUWm2zMzvlrM="; + hash = "sha256-O3Pgrb3k891IAmYtYWulosAOxtnIvLd+voEsyYtm/0U="; }; # Handheld-daemon runs some selinux-related utils which are not in nixpkgs. From 227e990f5539416d645cb2c213adcd23eabc95d0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 24 Apr 2025 17:08:45 +0000 Subject: [PATCH 070/210] graalvmPackages.graaljs: 24.2.0 -> 24.2.1 --- .../community-edition/graaljs/hashes.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/compilers/graalvm/community-edition/graaljs/hashes.nix b/pkgs/development/compilers/graalvm/community-edition/graaljs/hashes.nix index 4766647c5955..28c8de3832a5 100644 --- a/pkgs/development/compilers/graalvm/community-edition/graaljs/hashes.nix +++ b/pkgs/development/compilers/graalvm/community-edition/graaljs/hashes.nix @@ -1,22 +1,22 @@ # Generated by update.sh script { - "version" = "24.2.0"; + "version" = "24.2.1"; "hashes" = { "aarch64-linux" = { - sha256 = "01imy76ngg6wl6lg15mwspzdipq17kkb4psqb7jnzxshkxdvb6zq"; - url = "https://github.com/oracle/graaljs/releases/download/graal-24.2.0/graaljs-community-24.2.0-linux-aarch64.tar.gz"; + sha256 = "0qp8cjvsin1i4myqczqigaibdc7cxr5fwn9rm0b2nml7yd1cx878"; + url = "https://github.com/oracle/graaljs/releases/download/graal-24.2.1/graaljs-community-24.2.1-linux-aarch64.tar.gz"; }; "x86_64-linux" = { - sha256 = "19s0646s8q81l9yaq0zmmaymbn6lj595yhvp5ggmv6d0c6ipdbv1"; - url = "https://github.com/oracle/graaljs/releases/download/graal-24.2.0/graaljs-community-24.2.0-linux-amd64.tar.gz"; + sha256 = "074wxxrqa3ic3226kh48xxb1k3491xbn1vxa4cq5wdnzhlhrhpjr"; + url = "https://github.com/oracle/graaljs/releases/download/graal-24.2.1/graaljs-community-24.2.1-linux-amd64.tar.gz"; }; "x86_64-darwin" = { - sha256 = "0c25ndww0amr3d4s2dp92mh1c9h6qfy7psnf2pmmcahcisg2kij3"; - url = "https://github.com/oracle/graaljs/releases/download/graal-24.2.0/graaljs-community-24.2.0-macos-amd64.tar.gz"; + sha256 = "1c7n43cz6gvm7qf8dqh2m6vizyi1jy7ny4pj4fwj9lkkzp946vf0"; + url = "https://github.com/oracle/graaljs/releases/download/graal-24.2.1/graaljs-community-24.2.1-macos-amd64.tar.gz"; }; "aarch64-darwin" = { - sha256 = "1064zlid896zbmf4nnp0n23b6cv6a9wic0ly07j9lk4x65n2kpvr"; - url = "https://github.com/oracle/graaljs/releases/download/graal-24.2.0/graaljs-community-24.2.0-macos-aarch64.tar.gz"; + sha256 = "1dkvj2n7apisp7hyry65kqczclw40nfxwbqygz0yxaxgf5ih5zw9"; + url = "https://github.com/oracle/graaljs/releases/download/graal-24.2.1/graaljs-community-24.2.1-macos-aarch64.tar.gz"; }; }; } From 798d1e78aab8db1d0fffcdaaac758c21b315c227 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 24 Apr 2025 18:46:28 +0000 Subject: [PATCH 071/210] web-ext: 8.5.0 -> 8.6.0 --- pkgs/by-name/we/web-ext/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/we/web-ext/package.nix b/pkgs/by-name/we/web-ext/package.nix index 401aff4d5867..4be574c68057 100644 --- a/pkgs/by-name/we/web-ext/package.nix +++ b/pkgs/by-name/we/web-ext/package.nix @@ -8,16 +8,16 @@ buildNpmPackage rec { pname = "web-ext"; - version = "8.5.0"; + version = "8.6.0"; src = fetchFromGitHub { owner = "mozilla"; repo = "web-ext"; rev = version; - hash = "sha256-RT/K/fYMys1RAvnusAMuHtfZ7gndYf3FPuHBYCklBpw="; + hash = "sha256-y+aaAsAW1e+k5dnkYbq6JyRlKiC9wdXvyykUiKfQXis="; }; - npmDepsHash = "sha256-O8DmeT0wRNpuPU1K6kH97D9+mxOxCchAUrvOVPq4VPc="; + npmDepsHash = "sha256-5YLTb8nwmHgl29ZO7UVh0IGD/Pl4lxWoDH9o8H/Cp/I="; npmBuildFlags = [ "--production" ]; From 57d0c78b236b269f9985510c56f4c2c00d5054c8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 24 Apr 2025 20:47:23 +0000 Subject: [PATCH 072/210] opera: 117.0.5408.197 -> 118.0.5461.60 --- pkgs/by-name/op/opera/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/op/opera/package.nix b/pkgs/by-name/op/opera/package.nix index c1b56776a90c..a18655c63acb 100644 --- a/pkgs/by-name/op/opera/package.nix +++ b/pkgs/by-name/op/opera/package.nix @@ -52,11 +52,11 @@ let in stdenv.mkDerivation rec { pname = "opera"; - version = "117.0.5408.197"; + version = "118.0.5461.60"; src = fetchurl { url = "${mirror}/${version}/linux/${pname}-stable_${version}_amd64.deb"; - hash = "sha256-ZTYdmp8fScBm5SF1cx2LwhMV66MkShEtww7VDJTDATk="; + hash = "sha256-SApVqrMeOrpw9GDMwBgpxMfSgMXJS1YV2bPx+KXBY/4="; }; nativeBuildInputs = [ From 6e6ef8e8a771c9c3fccf818c38eed5fc482df333 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 24 Apr 2025 23:55:20 +0000 Subject: [PATCH 073/210] monophony: 2.15.0 -> 3.3.2 --- pkgs/by-name/mo/monophony/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/mo/monophony/package.nix b/pkgs/by-name/mo/monophony/package.nix index 2b13dd852402..07c48e1f24c8 100644 --- a/pkgs/by-name/mo/monophony/package.nix +++ b/pkgs/by-name/mo/monophony/package.nix @@ -12,7 +12,7 @@ }: python3Packages.buildPythonApplication rec { pname = "monophony"; - version = "2.15.0"; + version = "3.3.2"; pyproject = false; sourceRoot = "${src.name}/source"; @@ -20,7 +20,7 @@ python3Packages.buildPythonApplication rec { owner = "zehkira"; repo = "monophony"; rev = "v${version}"; - hash = "sha256-fC+XXOGBpG5pIQW1tCNtQaptBCyLM+YGgsZLjWrMoDA="; + hash = "sha256-UpklkBKssnwSnh9FeW5gOxY3EkwMbWAM/UEHpq+SIQo="; }; pythonPath = with python3Packages; [ From 721bda8b88029df559ade77389852d174f2564c6 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Fri, 25 Apr 2025 02:12:46 +0000 Subject: [PATCH 074/210] jellyfin-rpc: 1.3.1 -> 1.3.2 Diff: https://github.com/Radiicall/jellyfin-rpc/compare/1.3.1...1.3.2 Changelog: https://github.com/Radiicall/jellyfin-rpc/releases/tag/1.3.2 --- pkgs/by-name/je/jellyfin-rpc/package.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/je/jellyfin-rpc/package.nix b/pkgs/by-name/je/jellyfin-rpc/package.nix index 67a7242fac58..9b3e634607a8 100644 --- a/pkgs/by-name/je/jellyfin-rpc/package.nix +++ b/pkgs/by-name/je/jellyfin-rpc/package.nix @@ -8,22 +8,23 @@ rustPlatform.buildRustPackage rec { pname = "jellyfin-rpc"; - version = "1.3.1"; + version = "1.3.2"; src = fetchFromGitHub { owner = "Radiicall"; repo = "jellyfin-rpc"; tag = version; - hash = "sha256-cEHJJXMfXKDPKah2wDAdcO0SXO4ZPL/SqFbxONmI57M="; + hash = "sha256-RZ4G8/gMD2HsNdCJyr1PTKySGcv45a57KAEqAvLBtjQ="; }; useFetchCargoVendor = true; - cargoHash = "sha256-CWl/hVtwv2Q4/GwJJGTHCxnMxj8ZR9wPmLTlai0MyBA="; + cargoHash = "sha256-olg36uXAXVe3BuAqMAlLyokoeDm9wVLfE45tKuGlWF8="; - nativeInstallCheckInputs = [ - versionCheckHook - ]; - doInstallCheck = true; + # TODO: Re-enable when upstream bumps the version number internally + # nativeInstallCheckInputs = [ + # versionCheckHook + # ]; + # doInstallCheck = true; passthru = { updateScript = nix-update-script { }; From 0f1f47ca33c11cc6a75fa61dfc717e1e23968ded Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 03:11:00 +0000 Subject: [PATCH 075/210] firefox-devedition-bin-unwrapped: 138.0b7 -> 138.0b9 --- .../firefox-bin/developer-edition_sources.nix | 1238 ++++++++--------- 1 file changed, 619 insertions(+), 619 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/developer-edition_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/developer-edition_sources.nix index 2ecb7c676861..9d70dbb2ee31 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/developer-edition_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/developer-edition_sources.nix @@ -1,1859 +1,1859 @@ { - version = "138.0b7"; + version = "138.0b9"; sources = [ { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ach/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ach/firefox-138.0b9.tar.xz"; locale = "ach"; arch = "linux-x86_64"; - sha256 = "b8f0a3203007d7036c2bc25a9a0abf322df7f5f553e14daa009b8bf18cff7e6f"; + sha256 = "fac3e45580dda38a3dc66a2a7676d01d1108de924d55197199a56367558c7ffc"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/af/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/af/firefox-138.0b9.tar.xz"; locale = "af"; arch = "linux-x86_64"; - sha256 = "0604f932461c69e65b84aa5a41dc61125208321377bae944ede90df7bb44b408"; + sha256 = "ccf8e5ccf092102b0e8f3c948e51372103801784c3ec1fd5436a70409e5f2030"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/an/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/an/firefox-138.0b9.tar.xz"; locale = "an"; arch = "linux-x86_64"; - sha256 = "c1c0a70dc45f474f2b8d6a82be038b52029f5e98303967c9f256c0dd345d34d3"; + sha256 = "d578ed10644fc11855c24f978489935b6b33ee6ac79766d33468921fdbcb042d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ar/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ar/firefox-138.0b9.tar.xz"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "0fd8d6bfc87848ff51759c1196731696aa397461fd857d97d19ce9211a7ee9d1"; + sha256 = "618c70e0754444d6b7eec2ecd3a18bcf197246331938a77b2286c1565bef6880"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ast/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ast/firefox-138.0b9.tar.xz"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "8b7af75a81b08669870c5beb4aa24e125c5b77024c9677ac9a085dc57792e200"; + sha256 = "3d7edf7c2071964b06daa31f238d041f91e3018faa9ddefb2a3225d5e1c77321"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/az/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/az/firefox-138.0b9.tar.xz"; locale = "az"; arch = "linux-x86_64"; - sha256 = "a027574eb4e9a836e6d2deed44cd7d80b01fd82eb92221e91f3620b9d7be14b7"; + sha256 = "5f7b178ad698e76a4ed22acdd0db16838149bde97d7c4b21d0321c5493d5739b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/be/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/be/firefox-138.0b9.tar.xz"; locale = "be"; arch = "linux-x86_64"; - sha256 = "257900abeedbbed562f50f0ea2eb3609934dc071d359c2474d98670c94c7e5b3"; + sha256 = "e582ca01ee37c17c02e370a8fac3b55d581b968208b3bcbeaaada42c912aadb2"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/bg/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/bg/firefox-138.0b9.tar.xz"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "0032917af4fae9a29e84e7e94f3e0ac2cc909bf0e35c75b26e2fc03976c208d5"; + sha256 = "d2f149d28656df733ccebc6db3363ef3a82f33d36dc6b05c1244ff532e179ab7"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/bn/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/bn/firefox-138.0b9.tar.xz"; locale = "bn"; arch = "linux-x86_64"; - sha256 = "39eb0cce5cd4cb594fc2cd58f796745f147fe7424835925749cdd63b0d070005"; + sha256 = "abe3f081f61b49b44f65cf83534e39e9c58bfea366fab944ab8011e79806cea3"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/br/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/br/firefox-138.0b9.tar.xz"; locale = "br"; arch = "linux-x86_64"; - sha256 = "197145651d2047a9ca3f9e02794a4b4f08ed6d6a1fa3a666f43cd6d4b963f988"; + sha256 = "90161de073a2e82e6fff864c54bea3f20341482409c5caa818e581fb8d75ab45"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/bs/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/bs/firefox-138.0b9.tar.xz"; locale = "bs"; arch = "linux-x86_64"; - sha256 = "700ea9fccebe36df2c3674da40868f6ea6a17cdf8af6082f980844f7455f9192"; + sha256 = "47a09824419075a2e8c49e2101b106d4845d5d21720f8f03a2d62ccdc16fa5d4"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ca-valencia/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ca-valencia/firefox-138.0b9.tar.xz"; locale = "ca-valencia"; arch = "linux-x86_64"; - sha256 = "6ccb683a068eef5595ae89e349eb87cace1d77098b9585aff8011b5cb2567013"; + sha256 = "a501ae1bb0c16f424ce8b2fb32630e22ffcdf5119f604748c577a14e70425b66"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ca/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ca/firefox-138.0b9.tar.xz"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "9a97cfe8f416f74fbfbf41e186eb6930e68939b1c39bb07fd36dc25065d3330b"; + sha256 = "76369f8acfd8ea3f0c233b416513c4bcbefb7dbbabdf1561bc33587535b61206"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/cak/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/cak/firefox-138.0b9.tar.xz"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "7dc0692bbbaab56bf1d0272a5fca92a33a9835666ad3b0fbb4d624aa7c6af940"; + sha256 = "8d7e3a3b6e946dd51bdef1e8b026be61506a80298e5055532d56d514429d2de3"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/cs/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/cs/firefox-138.0b9.tar.xz"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "844260d8402289ce12b814b44d612fe792c312948ed832285f1c53438c588b49"; + sha256 = "a2c0dac2d345b7fbb055c65ad78a357abec5a3268deb83ae641547dab2b6b202"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/cy/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/cy/firefox-138.0b9.tar.xz"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "b5c6b81cfb4c7eb872fa4245f93f20ba390869d9e3c2a93aae3c98792f5ef9ab"; + sha256 = "eecf598f5e8f8f35a7651e9529f250caa18555e13407a4cf7593d7fdb3aeb071"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/da/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/da/firefox-138.0b9.tar.xz"; locale = "da"; arch = "linux-x86_64"; - sha256 = "b725561bff20a05447235674db7316d4471b5f3d0da83d6434593aa789fffd6e"; + sha256 = "eff5993b3a3b0ece22d329789c9b6407949ce5b55f0d19aad8241d41efb30205"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/de/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/de/firefox-138.0b9.tar.xz"; locale = "de"; arch = "linux-x86_64"; - sha256 = "a1c2d91de9a9a7fe2b02baabfdceaeb6a6521707ea336a51de287e60eee83482"; + sha256 = "a1a13e306d24dac00e554d41b1c7ec531eded5776ea3e59b206dadfb06a5e8a0"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/dsb/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/dsb/firefox-138.0b9.tar.xz"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "19af7e85d5b99a45b20cf0c54157e9aaf67d49474f2a293357d9abc81a1f697f"; + sha256 = "30884b572ff03760da2c24be3c2411e9e02419c304bb3f416117888eebd9a6ee"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/el/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/el/firefox-138.0b9.tar.xz"; locale = "el"; arch = "linux-x86_64"; - sha256 = "05565556eaa0349eb12d3bf36ebf02efb818c5f59ef8b51c69ff8d6e479d376b"; + sha256 = "a4aea75a8bab414d2459826896d8f3e127421793b12ab1561532490bc8903b7e"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/en-CA/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/en-CA/firefox-138.0b9.tar.xz"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "38a3aedc45831772f28013969ee6bd3bf9403aacefdc0ddc24d47f78cbcef359"; + sha256 = "f55cac940705067f1db247a7ff8cbe2dc1ea94d2d871715e2c6637b8b107e47d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/en-GB/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/en-GB/firefox-138.0b9.tar.xz"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "f6013c3cd54a2b6c0fe26f6f7fc62d1212b3cb98b8943c6ae41901e6dd8c5277"; + sha256 = "355ae21779afa49529d4326aa90a34f769a173d05f37867bad22f35ca2246e4d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/en-US/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/en-US/firefox-138.0b9.tar.xz"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "57470e280749e590c94fe8edd899aa36549227138f240ae187cce1d17dc7fd93"; + sha256 = "9e46180848c5325eb89ed8abfcbdbd3b9f456505d974a94db5251aa16b42d1b4"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/eo/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/eo/firefox-138.0b9.tar.xz"; locale = "eo"; arch = "linux-x86_64"; - sha256 = "068e5a83a995cd119ebc963349c0b287d63bc72102d003b8eaa8c03a684f98e2"; + sha256 = "ef8d7e854713c7290216eed11a0c955b84b1d420ffae158213b969982c4e9a43"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/es-AR/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/es-AR/firefox-138.0b9.tar.xz"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "da7f1776f4a5064309d82f57c8e8d685356536f153cbdc532e360bd0c6bd0328"; + sha256 = "ca5f6fdbc881484d81d8d8c51b6287efbd094d99f9e855a15971be6c5892e570"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/es-CL/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/es-CL/firefox-138.0b9.tar.xz"; locale = "es-CL"; arch = "linux-x86_64"; - sha256 = "db0301eba71ecd4569c2e31b87b154631c7de47e3a2e3ed9fce718a96fbdbdaf"; + sha256 = "4094838744161c74dd52d9d162eaa1141cbe1c6c1fa8d758de10d9e9494ab226"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/es-ES/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/es-ES/firefox-138.0b9.tar.xz"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "6e4ab27052bb9b5b6b8fdbbfa1be4725887e5541129f266c6ad43d5afc47b2f5"; + sha256 = "7b592155ce80524c9c70ba1ffe7ac828f2120947d1299f852e584f5e3c129355"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/es-MX/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/es-MX/firefox-138.0b9.tar.xz"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "e760ff14081a2c678c29e2d70798cd1f8bee089efc431de572c614ca5527c470"; + sha256 = "9b43a551c24950bb913470851306b4a639b9e0dd03c795bc9a9757e3514fe9da"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/et/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/et/firefox-138.0b9.tar.xz"; locale = "et"; arch = "linux-x86_64"; - sha256 = "4d02bbad7aecea49862e1e6d2639864c30465174ce12cf6fd866428b6e079b2d"; + sha256 = "0c8f1f7999bedb0079d60161c980aa815d3e35476b20150aef8aa61e77c4819b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/eu/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/eu/firefox-138.0b9.tar.xz"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "fcad41c91d6591fb171288c7fe5a90032541bf28ab3c78c31e1115ab4681b196"; + sha256 = "008aabc5712b6d6f5fe891327c8581c46267f9c001fb805417b8a98c6452ec73"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/fa/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/fa/firefox-138.0b9.tar.xz"; locale = "fa"; arch = "linux-x86_64"; - sha256 = "260761945332fa70a083250ebacb245d09aced1bd2403b70c7f9f510072cab9e"; + sha256 = "6510fbb67a2660f8c77aec275cc2c0a5084a5348f310caa4d9da692f80fea7f1"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ff/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ff/firefox-138.0b9.tar.xz"; locale = "ff"; arch = "linux-x86_64"; - sha256 = "9a2df1a24c245cf0e3c4763544fc18d89cc2b96480e7445e90c7965eb8b153aa"; + sha256 = "272562480de6352c02e55405339685b95b9a22344e2fc303edea0e5bbb4aca8c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/fi/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/fi/firefox-138.0b9.tar.xz"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "fbaf053ec4efa4707b31aaa57caac871a3695a8319cb2759c7a04bc993a81d44"; + sha256 = "b5da682b425762a87f0bb444e0d44144cd2ef0acf640030e20ee9a35b2bf08aa"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/fr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/fr/firefox-138.0b9.tar.xz"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "5d07827c26eaec4681e2f16bf08f923db0b13f87e51b117c8d37224edc71115c"; + sha256 = "2eda0823bc291693442b10585825975ed31c91f5586f9dd000bf9dad557688cd"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/fur/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/fur/firefox-138.0b9.tar.xz"; locale = "fur"; arch = "linux-x86_64"; - sha256 = "f2a272183125b244217857d8b921c85ddaf743481cbb7b958750925f3a3f7fff"; + sha256 = "e5463ef4123e78a059d44296ff735a0644157264476851829467a2d7605eff3c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/fy-NL/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/fy-NL/firefox-138.0b9.tar.xz"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "13028ef9250513d71c046ed534f3a1597e95b489c227d73113ec8372b94939df"; + sha256 = "438dafcdaed91b4f2f919fd7f07659cd803148f7d1b8a4e40241dd9434a4e1f1"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ga-IE/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ga-IE/firefox-138.0b9.tar.xz"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "c0d1cb1a99b45b3e0adec5eec99dc2ab31514f0797923413605b0996228aebb8"; + sha256 = "c2d1f2276f1190d9870c52ea65bf3271c61e83b5b42092207cc807d4a92e4569"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/gd/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/gd/firefox-138.0b9.tar.xz"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "3a31ad8eeb4b023c74431e7c19c493d53e7d09b29bf88575f03d099073fbb03b"; + sha256 = "c84325d4f12d485d16b2258dce59bc9999f8bc61cd0471eea396175ca8f51516"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/gl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/gl/firefox-138.0b9.tar.xz"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "15df3ad2a2fb492e78498d8f1fb631ffc94259e7b0fac422520d9e0d280615dd"; + sha256 = "d84e04bf50646dbd48c41a6cfa7bfa4c18388bfe6c526cc3ec97867fdc06cdce"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/gn/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/gn/firefox-138.0b9.tar.xz"; locale = "gn"; arch = "linux-x86_64"; - sha256 = "fd620930191c94fdbcd97981e052f872acb373f3eb3186fe7e5e0f8fd7c8a958"; + sha256 = "0cf550c094fcee7c4dddf72a255ddd3de897e3d50abed9ae5de8e99deaa7728c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/gu-IN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/gu-IN/firefox-138.0b9.tar.xz"; locale = "gu-IN"; arch = "linux-x86_64"; - sha256 = "10e168a9ac241dd850ba15269ee09c64b033555b94f3b7dd7d9403d27b77ab28"; + sha256 = "f4ed2271454fd1f97e677d9e927921661b88056465b859be8775df9da17918f8"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/he/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/he/firefox-138.0b9.tar.xz"; locale = "he"; arch = "linux-x86_64"; - sha256 = "ffd7f61c2a53937d27ce1bac266ba56c705c04b69677c25ecf742a9a800755b1"; + sha256 = "16b0996fd62d9d06047fd4136b7de73959047d19d653d358909a64f0777d3d54"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/hi-IN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/hi-IN/firefox-138.0b9.tar.xz"; locale = "hi-IN"; arch = "linux-x86_64"; - sha256 = "a224d8b8eed9eb89040fab120a652a47ca2f020c11052bd117840cc10282d90a"; + sha256 = "a5d9e4132c1ef8398083fb0d05f146b3e40dcc4a4188d99999193319a3b6c529"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/hr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/hr/firefox-138.0b9.tar.xz"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "48acfc537728cca5674d39256d0d177b96d9526965b09feab9281746ccbff70f"; + sha256 = "e3f7b4e448c6cc2af483c4a21f7ace2091163d4620691b7f1ee8f40dc079e76d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/hsb/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/hsb/firefox-138.0b9.tar.xz"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "bb822e872a358e79af79102615ea67e0bf6a33f74e60ba268ce308a25c17a9cf"; + sha256 = "1f56c9c98120587c6b798154a2c86928c72f70114ec99826a67c735482981630"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/hu/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/hu/firefox-138.0b9.tar.xz"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "2b258e97f16416d4698687833f24f1e4ad152dbb92cd8ecdc9988bd0df80396c"; + sha256 = "05767b1295a83e4a3d176799da30980f06e06a9d7076895d57d6af01fc42eebc"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/hy-AM/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/hy-AM/firefox-138.0b9.tar.xz"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "98a26b99a75da4eaa3ef743132a82cd3f8e7cb4c17cb71590bd95935739fc507"; + sha256 = "f1cc29065cac79af1a37f23c43ab21aba4b46421b48fc73c33e0512a453829eb"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ia/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ia/firefox-138.0b9.tar.xz"; locale = "ia"; arch = "linux-x86_64"; - sha256 = "61f5414ff99201141a2765af6b56bb11f24649b1d61d2cd71dd7a3500bffb04c"; + sha256 = "07c6d4b5aae436063c302449bf1f46256913af0ce3292ae9011af21e3466c7a2"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/id/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/id/firefox-138.0b9.tar.xz"; locale = "id"; arch = "linux-x86_64"; - sha256 = "01c1d8c2b058f4d88500112e459ea0584c778a066987f646b82a98fbbe4f2b48"; + sha256 = "e6fb154b7416661d4f10da95440bef64d59542b8bf15169b7c0bc1b04617cf6d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/is/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/is/firefox-138.0b9.tar.xz"; locale = "is"; arch = "linux-x86_64"; - sha256 = "d64ba836c48f1077418529eff98f468ad0b2c5cb4d3cbdf9515f5774420af009"; + sha256 = "a44dadf3dca261ddb53f28d201363f5f8617be6bd4fa86f1101ffd0df05ce228"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/it/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/it/firefox-138.0b9.tar.xz"; locale = "it"; arch = "linux-x86_64"; - sha256 = "501adb9ae0fb7fdcae66e3f5251fe4633939562842d74fa15ea6f4b070e130e0"; + sha256 = "74842c5d3754162465ccf49dbc3ce7393fd3d55cedac86e00cc2504a0e725028"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ja/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ja/firefox-138.0b9.tar.xz"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "ecc34ccad9d9573d05a880b06caec23aea903ba4852caf106f139d6bb3c0d056"; + sha256 = "5f18fbbe6b87776a7605d531bdeb2c170b500634bae8d887675409d7303bb856"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ka/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ka/firefox-138.0b9.tar.xz"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "c498d59fc3b72121e22222edc04820d444919271702c56876332fc3c941ecc1b"; + sha256 = "6d6e229b209575fece7c5397fe4d32921301468bb96836a2be25251708d2437a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/kab/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/kab/firefox-138.0b9.tar.xz"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "9eaedbcd9bfbffaee5eb161889e417cf949a741059224d4b787bce289e3d95d5"; + sha256 = "cf47e8c71ceb87f68a8780e16feed71e2e23bfca5e1e5bc7ee4469a25f52c9bb"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/kk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/kk/firefox-138.0b9.tar.xz"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "26f58223403bfe74885eb8eee19d151afb93086ade8ed965208c4eec138c2ee6"; + sha256 = "57860d964a8d7a40b5b541d98d6ae22ef1f29bb6aba736f7e7dabfde10f6171d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/km/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/km/firefox-138.0b9.tar.xz"; locale = "km"; arch = "linux-x86_64"; - sha256 = "8e483db40e69de2f3a7872175fcbaca8c4021f915a3c3839bccd0a078cb63af5"; + sha256 = "c2f8a0fdbefc7a07fc27375a1cb5a117122193d3af2622356d450e366fa76e21"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/kn/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/kn/firefox-138.0b9.tar.xz"; locale = "kn"; arch = "linux-x86_64"; - sha256 = "e131f5d5b11e3c847770396334621f5d39993ecf128fbfa09ac5ca67522ddc24"; + sha256 = "448f47e9ec0c0385abbf82edf342c393d682ad1589439ef3c789b401d32c6181"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ko/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ko/firefox-138.0b9.tar.xz"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "0498f79cc4c14a652e6845532a83d40bf73bd04403876ca219def6789ea2cdd5"; + sha256 = "7f2389efad36243928ed469e7d92cafc658747b3ee5b9afb7b2dfbef9103d9d6"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/lij/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/lij/firefox-138.0b9.tar.xz"; locale = "lij"; arch = "linux-x86_64"; - sha256 = "41e2945c6d0aa1476857e027b45d73636d8f4c7e60ac84b494d4e77617915c6f"; + sha256 = "385ddef8582f0cea7fa5064bfb0800ac18c668f2031959917c91c581187c3adb"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/lt/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/lt/firefox-138.0b9.tar.xz"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "41c9b9cb012354ff46f009657fad708c0e12d1edacda84ff48f09837f66c94a3"; + sha256 = "0a3872c32a391c5590996360a8e27febf0d0d67f9b326950c661b77a57e0dedb"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/lv/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/lv/firefox-138.0b9.tar.xz"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "abe1742dfcce28afdefd592a3037c03acbc68dd3d75afd78a4e30b4652778aaa"; + sha256 = "564268bebf76c199e999504fb1dc50611264c6048108629f460d3731a9de8eaf"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/mk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/mk/firefox-138.0b9.tar.xz"; locale = "mk"; arch = "linux-x86_64"; - sha256 = "780e661baac7105026d05b19bfcb9385a237b8092952942d604000bd4e3b8398"; + sha256 = "fba1e3e6b1ca45d52c28065f937de750dc6ffb86fd6482ea3a795d699537fbe6"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/mr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/mr/firefox-138.0b9.tar.xz"; locale = "mr"; arch = "linux-x86_64"; - sha256 = "33ffae9d774fd146bdf0da2285e20b0ab9af2bfa83b8aa6411fcc5222353e731"; + sha256 = "f1783b6ebfff648efc8df599a1371493a18739c1256e4461241c086a38106e3c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ms/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ms/firefox-138.0b9.tar.xz"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "b819914d35c90cfe2ff0664f5e1c905119e49c1bd8890b23ee077f8ff8eb611a"; + sha256 = "65317e650639b4becf2a3faebd8391f0571a1caf482e096ef5ce7db4343089e8"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/my/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/my/firefox-138.0b9.tar.xz"; locale = "my"; arch = "linux-x86_64"; - sha256 = "10b04f08b5f19ac78fb6d1b6d0b329ba47bf7aeea94725b797579cee253700f0"; + sha256 = "7d55d83d055b9ca35a7b20e32a1c68e2b86e17f7fd26615298c8b97872654261"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/nb-NO/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/nb-NO/firefox-138.0b9.tar.xz"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "2408c807b51be3260e673ad116dfb65fec06c25989eb4987a2c922f4040809f4"; + sha256 = "dc80b779c4b3bd18ec56a2add03aefceac05d403b10dc014a8c541864a449ff7"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ne-NP/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ne-NP/firefox-138.0b9.tar.xz"; locale = "ne-NP"; arch = "linux-x86_64"; - sha256 = "eeb343c941014c227b7ef8cefad77f0487ab84ce0c2a9474c936c95497987b22"; + sha256 = "2ff85a09b59cc7325f445b2f0abf0f9e786524d34c9de5bac895977926dbba4e"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/nl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/nl/firefox-138.0b9.tar.xz"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "e4c9c0bedb78d82aef48ad94dc74045e7836f2987c9e3af7f31edde2099c1e68"; + sha256 = "8b46a4fd2f14ff32a9590e6a8a799f1f0f91f8867bd27178a0f72b08e022e417"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/nn-NO/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/nn-NO/firefox-138.0b9.tar.xz"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "c42178b2a4ec7d29cb4d8176b1f9d51f0bc3cc2f79c53363beda0f7d445168e8"; + sha256 = "ee59ab82add8c564d15eb54f183e94c4d53cc293541d85a99ce487605b746718"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/oc/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/oc/firefox-138.0b9.tar.xz"; locale = "oc"; arch = "linux-x86_64"; - sha256 = "bf863b71429ca4d7f0ae9e08e4d5ab13935804cca55eb16e474585c1b010015c"; + sha256 = "4c2ffb26b88227f3bed20b4bbca3f70a88b54dd01c72b980ac2760f9e500a40a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/pa-IN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/pa-IN/firefox-138.0b9.tar.xz"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "a878a84560176e1d7b04bddc35512092f882ba4b5baa9f84266254f3374792b3"; + sha256 = "8b2c5d33193d0e6fabe775c4f36a74db8620ce6162f8d6b2415e2f9dffa03c8d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/pl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/pl/firefox-138.0b9.tar.xz"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "f19db9c0ed5ddc71ae95789dba9b8987197596935406dadabedf665f6d69bc81"; + sha256 = "27e6d0deb8bb6a0fab1ef365dded0560dd45eb1da380d56e477ca86ee1731c20"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/pt-BR/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/pt-BR/firefox-138.0b9.tar.xz"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "3237cd6eacca77cb5c7eab1dcab7efc7a7482abde3c5488981abc1280813bbcb"; + sha256 = "85c77c2a27b55135dc69ab3b9b96e2e177600ee95b27230af5ddfc9265daa039"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/pt-PT/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/pt-PT/firefox-138.0b9.tar.xz"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "22c6697f5d518b28103ef1c6a91643fde9b1ad02f64ef504774770fc46abbb89"; + sha256 = "83efbd2d771a51214ed189c20e5a0c9fd88bd5de8d437dea5e22d4a2119ef8ab"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/rm/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/rm/firefox-138.0b9.tar.xz"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "bc86976739b6389378210d7164a9ee8c82fbbaff9ef47516d4b7130d55ddee33"; + sha256 = "de71bcda7f802216262c210babb3192b63f94c7938d21af645c97249b1f868ec"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ro/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ro/firefox-138.0b9.tar.xz"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "9c1b3a322b5449ad5a270a13a0d085871c01c3682e4d8507618802e48f849e2b"; + sha256 = "68c95805748130967096fd268dd12d197fbe1b272e1fe85909098df96a0246ff"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ru/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ru/firefox-138.0b9.tar.xz"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "e4d2710bec845312401fa1cb9da37503bc87b8ed8e8011668c49aeceeb33eeb5"; + sha256 = "da6b03ae99992d4235529a3cc042c0eb049b9a1e49b3db10aa049a2c7c7f8807"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/sat/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/sat/firefox-138.0b9.tar.xz"; locale = "sat"; arch = "linux-x86_64"; - sha256 = "20957e5b79eed23b10013c55d55f2ad5f958522578db754f3a510b21ec3246f5"; + sha256 = "9214a0b9e499e1b75bc78925cd7097b0f9e1a441dc0ee461e59d895b0f766767"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/sc/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/sc/firefox-138.0b9.tar.xz"; locale = "sc"; arch = "linux-x86_64"; - sha256 = "ba40613d7c70e524e32db1cd8e571143786739680fe88f6829a84055653bf824"; + sha256 = "e93fbd4c7e2b472928ad2397bb2a6454c0dd8604988497475007df8336186420"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/sco/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/sco/firefox-138.0b9.tar.xz"; locale = "sco"; arch = "linux-x86_64"; - sha256 = "05f82f9aaadd1115d90dec5b1f64cb83695025c4befb0101c33f43001e59da23"; + sha256 = "357e87c474e1dd7f726fea603a017ad6f30f89b918c8c0100c793e0935bc2f60"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/si/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/si/firefox-138.0b9.tar.xz"; locale = "si"; arch = "linux-x86_64"; - sha256 = "d3b8e1df14433e532196c2ec251cbc00ce9b4d229f8a7c19c7686b43a8b372ba"; + sha256 = "584a1aefc82ecbfe1ed5bea7ea6c7b2eb302f2a7b500b380693b5f15d340e505"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/sk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/sk/firefox-138.0b9.tar.xz"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "03869ac8eedc49c3ee11371cb2be0bf95dd34940b48867efc8c0504400a0f04d"; + sha256 = "9b285d5a1626e06f40fceb89aed727d54eb5306e25d0d83144dad2a5e7bc8d5e"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/skr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/skr/firefox-138.0b9.tar.xz"; locale = "skr"; arch = "linux-x86_64"; - sha256 = "5006a70cb5e11d30886bfb4489ef3dc22d3e489bcc433da2c9d7c733f0bca824"; + sha256 = "7c9aa64cd038e56ab0a8722b7c47303fcee660f403d2b721ca04c95ec02a7519"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/sl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/sl/firefox-138.0b9.tar.xz"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "032831da608bab41018ff2f0db92061b6a7a0b6e062683b9c9670d34a3a24a9b"; + sha256 = "efa15ab67af92fa3f22bb20c93b114b8ad377e1ec836987b66b5ada8a6d9b064"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/son/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/son/firefox-138.0b9.tar.xz"; locale = "son"; arch = "linux-x86_64"; - sha256 = "fbf6b279191a34ad5aeee8df6079f85354abe15d878d3ed6e8c7cf22dbc197cb"; + sha256 = "8dc8a1b716cd83e50071650dff2feb3b11969681586757d03158c4ed4fbcbc25"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/sq/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/sq/firefox-138.0b9.tar.xz"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "fa24da7f059c775db85288d82b45619811091fe05e208758aaa3e7d186a07fb7"; + sha256 = "24ecb794824095370137a16b9580381d378d8463eb4d1ad38e46c3c4acbd47a7"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/sr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/sr/firefox-138.0b9.tar.xz"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "40b39b98da5c9fe11e1d99101677653a6f3b769dbcb44fa316757ecc424d2db6"; + sha256 = "3f202e21e3a2e21da1359fe5a2690b6dd8d036187a01bfa1f49f74dd36a19ae0"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/sv-SE/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/sv-SE/firefox-138.0b9.tar.xz"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "828670dde963bd02c1089b3ca4129e94ca2a38b95ad855011a5682f7b5bed195"; + sha256 = "2d78cddb8a9c44b35b3de171b894edd03ec964aefcbec0b1a2d2df9f0f778299"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/szl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/szl/firefox-138.0b9.tar.xz"; locale = "szl"; arch = "linux-x86_64"; - sha256 = "85c72a4d5185f096e6e64e957b694bc0ba61ff211551d331c00b2985211f522d"; + sha256 = "2ba55f08d9580790fa1169f69ed7a06557448d68e2157d1804290299e2d7f10a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ta/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ta/firefox-138.0b9.tar.xz"; locale = "ta"; arch = "linux-x86_64"; - sha256 = "17448a508678c32ce76c4b3d960a11172fea7ae66452cf6a41cf881772f42788"; + sha256 = "c63e9aa68f7aa9552a6b698509fba6a9f6355b43b248c41579f41ace02c19bbf"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/te/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/te/firefox-138.0b9.tar.xz"; locale = "te"; arch = "linux-x86_64"; - sha256 = "54584d4a85725e0ed8ba10a8773e41abcbf3dec22b1433c3246128d16a648dd6"; + sha256 = "5c2c225476b8e0cda930aa37ff5b05a297fb3d2c24b0212181f7637a1795d105"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/tg/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/tg/firefox-138.0b9.tar.xz"; locale = "tg"; arch = "linux-x86_64"; - sha256 = "4c1ffb2f582b67ef98011143c10479b518a28396f191fbe98532be1b97e27b79"; + sha256 = "f2abf27d7dd96e277e765c4b9b4cd7f0e2c9478b9ef4c31dfd66df4d0ccbe543"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/th/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/th/firefox-138.0b9.tar.xz"; locale = "th"; arch = "linux-x86_64"; - sha256 = "f600c76f1b55d2c8373d8371603cd2ad67269fb7e7581e7f96e086be27b9ec6d"; + sha256 = "99f9cc264e86314bb4d569ba8bcd4c0fddf7338e701dad77048d80ce2e686d35"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/tl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/tl/firefox-138.0b9.tar.xz"; locale = "tl"; arch = "linux-x86_64"; - sha256 = "9aa162e3bed3673c24a0b241ab4c51fd04388fddedac3cb8e1164a3d9fe73428"; + sha256 = "c378d139dba47534502d8f512b114ace44325e1021b4fc0d290a18a48655ec9f"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/tr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/tr/firefox-138.0b9.tar.xz"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "c698ed9243c3c7bd7e015c014c04fa25a82f5787be5aac8569c02cee01b0d6c1"; + sha256 = "bd897d907b02775004c7c3d863cce2e792bef36ea4635016d3ceb46754f9cb7c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/trs/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/trs/firefox-138.0b9.tar.xz"; locale = "trs"; arch = "linux-x86_64"; - sha256 = "f63d4a03e7a1ddb8c3d3af5cdbf0228f00303d48a9c7aadaf0d842e543248fb8"; + sha256 = "96420af7e0420daf942359df461f101a6ffe5a4b32a859db85e3a2a5740d3fe7"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/uk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/uk/firefox-138.0b9.tar.xz"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "3669f03052c392d5b77f0d418ac9917889fa31b586d425c00f22a065f3927f05"; + sha256 = "8730ebbe06debaf3207d9a531b8bd84dbf14379f06a1b9a14434f001c9c74c76"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/ur/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/ur/firefox-138.0b9.tar.xz"; locale = "ur"; arch = "linux-x86_64"; - sha256 = "5eb49e9fb6bb4340f76fd551478b02f3bfc6fd31fad1da697d985d28b15238d4"; + sha256 = "9a6c3c65fc5fa82ee89b6ca2b796d16bd227ca77df387262840a4b3775dc002b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/uz/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/uz/firefox-138.0b9.tar.xz"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "390bf6b6d3f94830e07aa5782ddcb54ab4c093321337dfa5e14a7d8f5d6f1e86"; + sha256 = "4900d8eba1e173c69d579958745eb135aadcf197911f863461944d55bbbb372a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/vi/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/vi/firefox-138.0b9.tar.xz"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "165bdaf635e0a28aa5d613db298ba8deaeee612013d0196f9afab33c1158729e"; + sha256 = "5ef94b23f1bc198a4fe5a089ec9d27c5410b1f446e666aa50f674888d36ce403"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/xh/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/xh/firefox-138.0b9.tar.xz"; locale = "xh"; arch = "linux-x86_64"; - sha256 = "4a5e1a7695f7bf292cdd3837403c618592d18b8f688bc71c8dcdc4b13c974745"; + sha256 = "aa75ae373bf281cf70c1effd147f51c005feb8c3cd34a151ad34a7b7b3894e8c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/zh-CN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/zh-CN/firefox-138.0b9.tar.xz"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "b04cd8cfdfcef2b1a4b7499a5a3ef45b7a601103d38e90e8c8ac2c527c13ee2c"; + sha256 = "c678705fc9d4f23b91663843500752628c30bc77c4b003ccf8b1a9d92afbeb54"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-x86_64/zh-TW/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-x86_64/zh-TW/firefox-138.0b9.tar.xz"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "c0339447201ce71a3cd645060165681c741c8aaa4b5d24df650cc0e5fdab2020"; + sha256 = "4736c0abd7376347f4a2aefb7560c32cf7c43e47e5180199e67c66efe0779981"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ach/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ach/firefox-138.0b9.tar.xz"; locale = "ach"; arch = "linux-i686"; - sha256 = "82c2c87253d5f6db635ee130e2bc5daffc5b2ae003d40e0c7672f75479e9eb1d"; + sha256 = "89894fad304ca482951db3b4f1a699e11ae60e5814c1c39778a8e39993d54e5f"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/af/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/af/firefox-138.0b9.tar.xz"; locale = "af"; arch = "linux-i686"; - sha256 = "d3806917edd78b7a74affc4abaebd3449ca20e9aba0dda7efc38c10ca70047cf"; + sha256 = "fd40aedcb8533e86110e8aa1b14ae204a04a7174b71f4df266ed9e0c8126b96e"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/an/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/an/firefox-138.0b9.tar.xz"; locale = "an"; arch = "linux-i686"; - sha256 = "780eb3fc8f55dbfff3bc38c19d873ba893539c16ce3255ccf5b4c35408d2be38"; + sha256 = "846242a63ef55a8051450f3965e6f42279bec51068cd7ab4819f65df1da10f4a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ar/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ar/firefox-138.0b9.tar.xz"; locale = "ar"; arch = "linux-i686"; - sha256 = "1b8417808203e81ae6c54250525a327ea41068d46097c6aa305942fda3299318"; + sha256 = "962896ad8b97af44377e28abb76c5ae1d344219dbee62339419ed76f2e1e175a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ast/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ast/firefox-138.0b9.tar.xz"; locale = "ast"; arch = "linux-i686"; - sha256 = "fc4f83e7849b1a1a468a1b045703f09dff1a608af7efe9f5c03ada2a942c8208"; + sha256 = "3b741a6f64c0abebc4ce10c4806b2ea4535959faff56853db9f68adcafc2c576"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/az/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/az/firefox-138.0b9.tar.xz"; locale = "az"; arch = "linux-i686"; - sha256 = "c46f3b824781113ec3d96f9cae36fc7395dea83c13906a7cd6c32130ec31a59d"; + sha256 = "0091669358d879e7d4e2317af1ec8ba23408b13e157475a5d787b51ac04e5d6b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/be/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/be/firefox-138.0b9.tar.xz"; locale = "be"; arch = "linux-i686"; - sha256 = "07e6326aa99755b9e85ad60391d2005d5c48344d13aa684ebc98adf157d0ecec"; + sha256 = "3dd146471721b8eec89360ba25b2a61a6727c521a164593d1323ccd021fb13d2"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/bg/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/bg/firefox-138.0b9.tar.xz"; locale = "bg"; arch = "linux-i686"; - sha256 = "7267bc0f6c7a45221d668e1929fb9ecffea24c5e0f762f4ca996ea372f31a720"; + sha256 = "226d8eced2f6615208a856bdb212289f232775456f70dbc9de5ccb869c50d029"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/bn/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/bn/firefox-138.0b9.tar.xz"; locale = "bn"; arch = "linux-i686"; - sha256 = "338c90eef66ca73445caa3f0c935fdf6ed39fe2e0664bde58bb2ab20b43d2490"; + sha256 = "d43481217bd985bf3590c1796d7d3da6dc6c7448e8787adebddcc6bda5d5b439"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/br/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/br/firefox-138.0b9.tar.xz"; locale = "br"; arch = "linux-i686"; - sha256 = "46f1e1644e4e205f408db4005116f0a33afc1a02fb9543b13e47963873eca0fc"; + sha256 = "3386e6ed67c7b72521d0f6d5dbc70619b3736a493080e897ce557932d24973c5"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/bs/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/bs/firefox-138.0b9.tar.xz"; locale = "bs"; arch = "linux-i686"; - sha256 = "13b6eb7e199be3b14df5b714e5ae7b52f5644d27414ca55900d92e337ebc399b"; + sha256 = "893d73b210f91839d30b8c06ab3b2af20ebd42f998020bb4fb3194cdc1805bb9"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ca-valencia/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ca-valencia/firefox-138.0b9.tar.xz"; locale = "ca-valencia"; arch = "linux-i686"; - sha256 = "ecee14386be5f86791ca991352d1f5847bf1ff98fe33faa3d73536b3368afab9"; + sha256 = "df345e3dbda2e45e5c620535f24f3ad6df0adcda47dfdfb0d062ce76e35f6a60"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ca/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ca/firefox-138.0b9.tar.xz"; locale = "ca"; arch = "linux-i686"; - sha256 = "d8420e5a41594234f62f9726bf0d8a83e4e20cf0cd4368ca016bfc8d75e21746"; + sha256 = "399bfcfcbefbbc14b7076c1b75d15a44c61e455c1bef06b54f8faa8231141e8b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/cak/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/cak/firefox-138.0b9.tar.xz"; locale = "cak"; arch = "linux-i686"; - sha256 = "9d0cb20852c0339a6f874b0b03bbe04b378e93153d437d641b91e706e279c22b"; + sha256 = "8b2fc08debe84c88f76b39b5449041a3fb82ab9cb24c4c14b316ee688b9c12df"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/cs/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/cs/firefox-138.0b9.tar.xz"; locale = "cs"; arch = "linux-i686"; - sha256 = "23c7f46d1174921fae7b1f04673c0ad6a91278c1d113a3e10d5085ed6f88516d"; + sha256 = "82bea1608c3f788499b07a23e64d784b1c2d53f4e6a023b3e5307da81c789bb3"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/cy/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/cy/firefox-138.0b9.tar.xz"; locale = "cy"; arch = "linux-i686"; - sha256 = "d9afdb01dc24eae7e0acac20519c2f491b456afb8f652689bf1df3e5c789a8b7"; + sha256 = "d54240c2df1d0ff774ee77a73429732f2d2be0c00a80f4ea9e3b4cb90852350e"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/da/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/da/firefox-138.0b9.tar.xz"; locale = "da"; arch = "linux-i686"; - sha256 = "2c4056dfcebe8d2f3572bfe2383b1ec7d1ce8f50ae6be7f0be466c630d88c23b"; + sha256 = "19181e61774ef4310906fc09ff1d0396a5908becdf6b9e36b91d54d57722876d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/de/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/de/firefox-138.0b9.tar.xz"; locale = "de"; arch = "linux-i686"; - sha256 = "07a2a24aaa9f2069db525455f974adb767bb21c19e62b0e9e6694f65443aad98"; + sha256 = "c705f6ef08281205d5698e1a60304e324012afc8858774b1d926dc6e1cd56c24"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/dsb/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/dsb/firefox-138.0b9.tar.xz"; locale = "dsb"; arch = "linux-i686"; - sha256 = "fd3048a427678edb53d41b9c6965c27963a362ab274ba7475ab76e25372033f8"; + sha256 = "ff55e26a952fb6537a72368189b7be8950aad58b1829f0534f1ed8ce7e57d46c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/el/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/el/firefox-138.0b9.tar.xz"; locale = "el"; arch = "linux-i686"; - sha256 = "fd6d60ef5b03faea68bbd3133d0b5a9385eeca39ef0b9fa1822fe1eaef059839"; + sha256 = "ade704a5da98041eb2a525fa9e8b0a8c651e064ef226968b2eadcf48e908be86"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/en-CA/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/en-CA/firefox-138.0b9.tar.xz"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "47ae9cfb743fe82c797285caa71084d40f44a8ec27e31589121c7242474ab3b8"; + sha256 = "09e33d7f3e3197d9e96ccae77f0db355647b5c5cdc4ab36d44b603394b86fd3c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/en-GB/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/en-GB/firefox-138.0b9.tar.xz"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "809842ad556b86bf5d13f09781930be24ad1d9a95b91156d14bee6f8eb9f1bf3"; + sha256 = "6971f080ea3b6978ad3db66f32baf9cfce0026f74a13fae21aee89687f9c7d06"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/en-US/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/en-US/firefox-138.0b9.tar.xz"; locale = "en-US"; arch = "linux-i686"; - sha256 = "0e09dd3df011e310b3f37c4b8cc4707730e8008e553fda1b7d192126ef03ae54"; + sha256 = "26c5b243b0f0c3f75d8f8c364481b70a6789e5f77fbab69201f79ab916b6462d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/eo/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/eo/firefox-138.0b9.tar.xz"; locale = "eo"; arch = "linux-i686"; - sha256 = "e4a563c3c190e5f16b6dc68bf20ee185bb3ef2010ac8b0f9c36c61d33e19463c"; + sha256 = "a1b958fd56a86d1ab6f64c568ecfb51169e7d859995cd803999127ec4776934c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/es-AR/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/es-AR/firefox-138.0b9.tar.xz"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "29a3ffd8158843ef31bc72a597c885c906f13ea7716623928f4056298bd7fdb9"; + sha256 = "c9bfc6821b53a9f6e200d042d4d9aa331662dab4daa1700a32eb03b2ce2118f6"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/es-CL/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/es-CL/firefox-138.0b9.tar.xz"; locale = "es-CL"; arch = "linux-i686"; - sha256 = "cea3d6654d6a94c3d8b9d81c4da8febe0b339018943c61204e567c1487ecde2b"; + sha256 = "d4dca0bb8c7624da40b642923fd14d122b50e06cbde078ba53a93be77e7d6d7f"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/es-ES/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/es-ES/firefox-138.0b9.tar.xz"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "2a55073ed04b1091dd3badb1b9dc16e53a120e6683a0ac749cbccc807933a3c3"; + sha256 = "83e21b44b770d6c0fd9e07dc50b39e4c8d836d57e2ec8bc3d1f373b0e93c7b97"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/es-MX/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/es-MX/firefox-138.0b9.tar.xz"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "1bc4e310ea2a93dc5e789ea25030fe4575f24d3350c0e09b541fc22be91c03c4"; + sha256 = "6df7ba5c45cfe788f0bf8cf9e9b6fcdb7f23ea5b8504d66cfde7bddafc1e4ddd"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/et/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/et/firefox-138.0b9.tar.xz"; locale = "et"; arch = "linux-i686"; - sha256 = "6a5680e7c67197b3cbd31c42a5c82ca88ee677abe91c23cf17e016fb056c62e3"; + sha256 = "958b84623adb5e7c7ed9e298da6bff103e4322710fdd5bb782c484922985ba31"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/eu/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/eu/firefox-138.0b9.tar.xz"; locale = "eu"; arch = "linux-i686"; - sha256 = "41ca8a720ca25f9c95bf3e0aafcd955ebf84b562347b7f78c8026484efd6c50e"; + sha256 = "457e57f9a55684671748240a72edd9c6134324fa1c75204dd2d9612a30e6f325"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/fa/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/fa/firefox-138.0b9.tar.xz"; locale = "fa"; arch = "linux-i686"; - sha256 = "9db17ec5c9f5d8cf59bd3e5d0eace6e6aa82b23d8b6b28f92d6b43beb3061da4"; + sha256 = "d774345364c67bb61b7e76efd9503eec409f75cc92f3c84180f7b8b045775927"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ff/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ff/firefox-138.0b9.tar.xz"; locale = "ff"; arch = "linux-i686"; - sha256 = "55539014cd36b1477fac3338e778a6f9d5f277f898305a9e3ecafa1581001a7a"; + sha256 = "d02b6f69339cbe6dc1d334d48e85d4419c38d71b401a3205eae8fde17ee2a61f"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/fi/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/fi/firefox-138.0b9.tar.xz"; locale = "fi"; arch = "linux-i686"; - sha256 = "59858f9bb2ec844299b9066e6eea42fa425f09ecbaa9b6e1fe1c0f55b7fb0da9"; + sha256 = "2e50df0c5dadc298a8f721d60ab948ffa083a3c12834e207977d9cf3a64efe06"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/fr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/fr/firefox-138.0b9.tar.xz"; locale = "fr"; arch = "linux-i686"; - sha256 = "53bfbf13ab4461d48e773ebbc5f4d79fd21b2bc99a72fdb1fe02ad2fd7dc0a25"; + sha256 = "9615920c2688134eac09812d6c0f02022c2da06e77b83e03ad82ae9af187c40e"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/fur/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/fur/firefox-138.0b9.tar.xz"; locale = "fur"; arch = "linux-i686"; - sha256 = "cb5fcb431b8f06120eeced643131e02cbd3aa357e83e6ba26494e12755a8abee"; + sha256 = "89d360207bd2fb523bc2ad743930524e406f15978b787cf679e05e2babe2dfff"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/fy-NL/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/fy-NL/firefox-138.0b9.tar.xz"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "262ad80ad3758940b9f79ea6ada05716c48c319b81689c4faad6b8a7403dd18a"; + sha256 = "7944a1abe59442b2a6e06ccc027adc18acd8dcc0535fd896dffb21ef4539c038"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ga-IE/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ga-IE/firefox-138.0b9.tar.xz"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "691e3bfff38e33b965bd091c88466f20c0527b5d5e4aa7bc2b6e8cc78a1399a3"; + sha256 = "2490bfcb417c036236f39ce5ae87d5fc9ecb5dbf664cfc7b166d7da5776112f4"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/gd/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/gd/firefox-138.0b9.tar.xz"; locale = "gd"; arch = "linux-i686"; - sha256 = "fd6df225e4ba88409aec798102c164cd249aaefbb903efceb3e6dc1b64343801"; + sha256 = "e6db2fbf9a1fd51dfd089347b2a69d1cb67c9b79e93508da9f2f209b27c7c478"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/gl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/gl/firefox-138.0b9.tar.xz"; locale = "gl"; arch = "linux-i686"; - sha256 = "ea2424dcbeab7d166eb8261435d92a7f7b3d320cf22347f4b939fa670bd79508"; + sha256 = "9d7f9108689a1c4124ac5cea775350cd5ee22d1e8c1ee0bde75f7cfa95409746"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/gn/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/gn/firefox-138.0b9.tar.xz"; locale = "gn"; arch = "linux-i686"; - sha256 = "3578232b57561ec137dee65665e663e55f96351013836f30563bbded400e79c5"; + sha256 = "04cbb945ab2f01a16864b7072efce947c165f3338b9eed1ad4a67a1e051a6cdd"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/gu-IN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/gu-IN/firefox-138.0b9.tar.xz"; locale = "gu-IN"; arch = "linux-i686"; - sha256 = "62f32417b4df18a653526aa8530c271c08327d942edfe1b2ddc50dcbf5b9db27"; + sha256 = "35737e02983683729f962558c5850ddf7261a95fe99f21358d2d89a0bd25f44f"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/he/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/he/firefox-138.0b9.tar.xz"; locale = "he"; arch = "linux-i686"; - sha256 = "39f8c4062db93d1eaf31aee77ce41bb0e7bcfe6f0c5e5f1efaff4007f8a23e20"; + sha256 = "a8dd0648697d3a3fce9208efd4419dc10ebece434af32921b93373b6edfec703"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/hi-IN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/hi-IN/firefox-138.0b9.tar.xz"; locale = "hi-IN"; arch = "linux-i686"; - sha256 = "e535265a168998b2e874c2fb1ee7e8e3cb33512a2bf12691b4caf3d2f1b2ffc9"; + sha256 = "9663460904cceeec00fc23c0ac6584da8597f0d110b1f81d0fb86e4e8883917b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/hr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/hr/firefox-138.0b9.tar.xz"; locale = "hr"; arch = "linux-i686"; - sha256 = "5e541b931fb7f926508094e1e0d96257c3ac2738bdb07d3f88f0f64a5c59bb18"; + sha256 = "b87651ad298fc9f7f7a9f361591529643a1f84edd08c8c43c7ae2a65bc550431"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/hsb/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/hsb/firefox-138.0b9.tar.xz"; locale = "hsb"; arch = "linux-i686"; - sha256 = "3ed0302d06f8fda57f21a8212915d5964c57bef76c0ed5d2efc5e039c4241c38"; + sha256 = "a0ef948a3da1330f075f05b7156bcb76f77f32f0ec63d7a76479f8d8c393132a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/hu/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/hu/firefox-138.0b9.tar.xz"; locale = "hu"; arch = "linux-i686"; - sha256 = "2785f316c78c7838ebe3799f2f6f826ac2fd8835a983ace01caf79ac95c1e2d9"; + sha256 = "4509e62b0d60cd1243821939bef6b3939eee045dac4518368a60b72f6f7f8ef2"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/hy-AM/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/hy-AM/firefox-138.0b9.tar.xz"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "75245e9b01024eae59cf7292ec32f5bfad570fc3f9e7f224b497f5e44fa8ad2c"; + sha256 = "4f3950d83a428b9acbad9634ccff5a5e3ac376e360af2f76dbace858443ea9c0"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ia/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ia/firefox-138.0b9.tar.xz"; locale = "ia"; arch = "linux-i686"; - sha256 = "0a874f16702500c5895e248f7230c245a9115c09e4535132f826807b00f84757"; + sha256 = "f0060c657b60a0b14e38f48ddd531256912c375a0213ee9db411fb023d8d782c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/id/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/id/firefox-138.0b9.tar.xz"; locale = "id"; arch = "linux-i686"; - sha256 = "21114d8ba4f1ec3ab71b8f6b59ba24a8ad7ee8449be4de6acad6ea45d75b8d6d"; + sha256 = "4e1ffc82b1ebbdb66ad723ff262b948d18e2030dfc63fd3b7e04281876f43664"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/is/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/is/firefox-138.0b9.tar.xz"; locale = "is"; arch = "linux-i686"; - sha256 = "7fc45cd282d08c719de85b2fefffe82fd51c89c281665b9bd6b9c592c5e0ac6b"; + sha256 = "6fb23628a67f65721205a93b216325f2eca2ccd79e33eaa51c69325ec3e9a082"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/it/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/it/firefox-138.0b9.tar.xz"; locale = "it"; arch = "linux-i686"; - sha256 = "6b3728f3fbc3241c791d801ed35d353c047faaa0ac9a34a8095d556a4c6ee252"; + sha256 = "8ffa77b4d9d84dd7a574ca012e3ee6a1340b8431a8b17219b3da48235fcf39c0"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ja/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ja/firefox-138.0b9.tar.xz"; locale = "ja"; arch = "linux-i686"; - sha256 = "108ac8e11ef9a975d41abec22d281cedf7f9594a7c8c7acc2cd8e9ecfcbb091c"; + sha256 = "0c08d895915ab5720ce864a8e8ce27b07d95bfcc350723e6d323d3237fbe313c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ka/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ka/firefox-138.0b9.tar.xz"; locale = "ka"; arch = "linux-i686"; - sha256 = "45f61884989b1f53db1579a945d9519586f03a8a6342b21e31488a3c1507e796"; + sha256 = "d5b0abecc7811727a93c85535a4140e0a68bd800a7987d89a4992b94caeab132"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/kab/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/kab/firefox-138.0b9.tar.xz"; locale = "kab"; arch = "linux-i686"; - sha256 = "d50b916265b19eee3af39b178d96df34b0250269fc303d327138cdf4caf1d34a"; + sha256 = "73c48e63038e2422d9912bc6af71bd7793a0a9eef96344f35a7141101e23b561"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/kk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/kk/firefox-138.0b9.tar.xz"; locale = "kk"; arch = "linux-i686"; - sha256 = "7e8b09591a24da144cfc18ce960e27bb545f10e4375d0c5f87340fb8532a3608"; + sha256 = "2dbafca0507719032236be0d1cf0f8cd3e2f54e5e81d46f58847625ee60eea2b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/km/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/km/firefox-138.0b9.tar.xz"; locale = "km"; arch = "linux-i686"; - sha256 = "1e538b6232eb0f8cf380b171ebb0a457d0f954ca57b09bad1beda3e00379b260"; + sha256 = "0d4acba5c88bc61e6d55d8c178e33036072302cb87e85db6fd23e0085816a1d8"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/kn/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/kn/firefox-138.0b9.tar.xz"; locale = "kn"; arch = "linux-i686"; - sha256 = "0882550f1bd56e4a893e8138ca3b947e4be6d3274de4e1f271bef1fa4c82701f"; + sha256 = "2a9315a50c7ac26b0185139cb677e7c032b32c717292e6c522f8db35548fcc55"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ko/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ko/firefox-138.0b9.tar.xz"; locale = "ko"; arch = "linux-i686"; - sha256 = "24262bc4823202d74b5a34dccc233c186bec39563779bb62298f3496fe692efe"; + sha256 = "7d7e8d7d211f3e9f3dbed52da10135f7fed7fa8b45a6b42b2a887f6bcbc06b72"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/lij/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/lij/firefox-138.0b9.tar.xz"; locale = "lij"; arch = "linux-i686"; - sha256 = "9ff490b89818589d5e5e78b6aadee160a5d1c6087ca0f2a438b640420522f8c7"; + sha256 = "8867659c881c8d92ca5e6e799c9cea94948046738efe702e519e583abdaf936d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/lt/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/lt/firefox-138.0b9.tar.xz"; locale = "lt"; arch = "linux-i686"; - sha256 = "c5d5a9593fd4461ac91ebfe968c6ac530f5754337c7fe87664b1525aac5be424"; + sha256 = "2ad32eedaa77fcd4666b0f1196c061d761c9775e6f03a925ce1d7c6fc7f0f7a1"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/lv/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/lv/firefox-138.0b9.tar.xz"; locale = "lv"; arch = "linux-i686"; - sha256 = "64b17e92e2c32668cc3f70c87cde8faf2f2abee7dd24b24740486f179dae47ee"; + sha256 = "5d886b62bc55e6ecdbd3f0f08a75716e43073c9167600a25fdba212b52628155"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/mk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/mk/firefox-138.0b9.tar.xz"; locale = "mk"; arch = "linux-i686"; - sha256 = "3b5bf67082b1e66d9c97b83a030e2ef5dc752f36a0ba689bd58c94841a93e22f"; + sha256 = "8d7ce8f4d7e4e0f79239eae01b0f93de7277c14ee57f6818900f1d74fbbe913d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/mr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/mr/firefox-138.0b9.tar.xz"; locale = "mr"; arch = "linux-i686"; - sha256 = "e32f654d1c2e19f9c63afdcb46896ada19b668c81d4fd5e6828402a784543799"; + sha256 = "849214cefd34b75b15de9cb5926c29b961c8b4881a01871c53d8b885c9ab02f0"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ms/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ms/firefox-138.0b9.tar.xz"; locale = "ms"; arch = "linux-i686"; - sha256 = "5738e6431e146cb3cbce5e5541c9b18976fe856a4b9ea708bd219b5eb0a9a59c"; + sha256 = "a24f9d600b3ce0a8561aa99cf5fffe90f00c28bb54c9dacd472ca08f1df0eb48"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/my/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/my/firefox-138.0b9.tar.xz"; locale = "my"; arch = "linux-i686"; - sha256 = "d55d7cbdfb5f74bbc538262f0030f40a84e8f2ebb5b2e30250825657ad4fbb76"; + sha256 = "ab5754a38510b66cb23f2dc24676b8d4c39b34bb7f1806547aa55c72397d4d65"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/nb-NO/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/nb-NO/firefox-138.0b9.tar.xz"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "e866589650793411758c0c9bf0a565b72b536bc5387abe5b580a2ec12673a779"; + sha256 = "dde5193f0ca8a933216627d92dbaa9e19bd4f7bf6f3511a58d1ac81dc8ef9556"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ne-NP/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ne-NP/firefox-138.0b9.tar.xz"; locale = "ne-NP"; arch = "linux-i686"; - sha256 = "bed7926025047db7c44fe4151b7cceb7c103d03bf8af397652be8bd924a5d5a8"; + sha256 = "c02e890883d586b575224a915a9a5bf16eeb6da1d84ac92d8650c2a8a10ccb81"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/nl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/nl/firefox-138.0b9.tar.xz"; locale = "nl"; arch = "linux-i686"; - sha256 = "ee8f89a559726ca9997a1224bd5df2c0c9f7f643bd3c29f53581b5946b34cc27"; + sha256 = "1a96b2068406b8c155d73d408294f025f161342065d2c5359e36acb0cb685e71"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/nn-NO/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/nn-NO/firefox-138.0b9.tar.xz"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "cc98a51a3df16cfac3e1462a1989cef897b8153b0d8e34eb55cd65bfde8cf27a"; + sha256 = "df309c090da0637354b80ef39c4e83482e107dd2c9d6c271e02bc46b9b5b0463"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/oc/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/oc/firefox-138.0b9.tar.xz"; locale = "oc"; arch = "linux-i686"; - sha256 = "7e839e8595acaaf7682de705962a2b36b15137a4a04b3930e371ff04e43a86b1"; + sha256 = "c5512c9718b52c21581035327f7ea8df840785e54d9dba9d6208c993d442fb6a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/pa-IN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/pa-IN/firefox-138.0b9.tar.xz"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "b70f3e9bb5da8564854a160d0e627f4993cf771890cfa7b439e4de2d227aaee3"; + sha256 = "d02302098b4308df71c625c0939e590748dcd53012a6d3d6ac98a3e0dcc2639d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/pl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/pl/firefox-138.0b9.tar.xz"; locale = "pl"; arch = "linux-i686"; - sha256 = "8d181ec90398db918eca6a1c01adde2a522f36670b74669bf373580888cb196d"; + sha256 = "72d357e0a5acafc716146a38397bcbf8acdf556495a03da1a112de27f263392f"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/pt-BR/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/pt-BR/firefox-138.0b9.tar.xz"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "567e6126e872aa715f9b6c4ca7fd1f2f54a43fe18722fb1c2496107b0c29b674"; + sha256 = "5b65b370ba52bb1dcc70a4b325836d5872681a3ea187b3cd94cac752af7645fe"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/pt-PT/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/pt-PT/firefox-138.0b9.tar.xz"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "18e4edf85933b25548405b80b5c401ee54bb18ac9158e8e1a25c6f5ada11af50"; + sha256 = "bb45fc8efa8ec0783d8c028ec363682697d326bb59de986541c9690e6a748d05"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/rm/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/rm/firefox-138.0b9.tar.xz"; locale = "rm"; arch = "linux-i686"; - sha256 = "abbff59761b6661e6a65390bfa14a82e63ab5b4a17b84cf2690b7b405f33fc35"; + sha256 = "d9261888fdef4083a4b8e65cdced18e036e1f453322b20b9c095a15f44cf55c8"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ro/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ro/firefox-138.0b9.tar.xz"; locale = "ro"; arch = "linux-i686"; - sha256 = "181ee97fac8454ee52766669744dcf5817f951fb9eeb705fef42db87c3ff3383"; + sha256 = "cef2a3081b5f057b864095c74c74b02ddbc8715861a00c73ec268f6c62e7636a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ru/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ru/firefox-138.0b9.tar.xz"; locale = "ru"; arch = "linux-i686"; - sha256 = "f7e48615a4a2ebd72c7e65ad76ef3601dae838ffd1a3c9ab70d5f2a8c864b188"; + sha256 = "618449ccfda5ca281799e6a53887e5ab82b0c6582f2f8bb89d756bd5d90e6bb6"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/sat/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/sat/firefox-138.0b9.tar.xz"; locale = "sat"; arch = "linux-i686"; - sha256 = "3f5afab0a5c741a7f8d711001eff302f1554a7635d66c0fb870fcbbfb7a18031"; + sha256 = "d1df51654703a7aee9009f0fe19646158a5b8b40f4469a68297161835e473af9"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/sc/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/sc/firefox-138.0b9.tar.xz"; locale = "sc"; arch = "linux-i686"; - sha256 = "be537d34fed5c39f66dac88030a4569cd733d8c69477b1c94e2a4ff430956eaf"; + sha256 = "498f18bdf582d6cd9c8508dfca07e8c9b429cd2c7c3533a5088431ab45e9ff91"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/sco/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/sco/firefox-138.0b9.tar.xz"; locale = "sco"; arch = "linux-i686"; - sha256 = "91cf5eea447ad484c68bc806ff386731f5271aba5bfc3a41d0ae1312675ba601"; + sha256 = "92178b44127b1b3b17a66b3b7ceb8fed1e62d2b47863e82f9236984ff9b0e5f3"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/si/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/si/firefox-138.0b9.tar.xz"; locale = "si"; arch = "linux-i686"; - sha256 = "2a89de5d16792780d54a8f2778a40aebe7b0b7cbd9ee70a8177ceb14b633f171"; + sha256 = "df40ad66bfcb8d668c0884e98904a3cc795c082a7eb9323215689b0c096b32b4"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/sk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/sk/firefox-138.0b9.tar.xz"; locale = "sk"; arch = "linux-i686"; - sha256 = "f319e5ca33436f352f2e338fd222a5a6a586eba60dc5800caf68d70a3e3160a0"; + sha256 = "432aac4bbaa20a8cdb94978dcade325895b2ad902e5cdaf576c3081237458fd9"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/skr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/skr/firefox-138.0b9.tar.xz"; locale = "skr"; arch = "linux-i686"; - sha256 = "d61ab175fc31703d24832a266f3cf99e15e1aff426dd632a7ab2654f50f131c6"; + sha256 = "f0f1b1d95efbefe60565c4417f92d2516ce4e8db33ccb3c9c311ad254ab412e1"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/sl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/sl/firefox-138.0b9.tar.xz"; locale = "sl"; arch = "linux-i686"; - sha256 = "b3a4ebcc906472edb50681011e9bc1c6d6089d258e055a72aadc53819bb30f8a"; + sha256 = "b25855ab43daa7c65edba0e078b85fbe7312de07289c4e05b1b5d5ab3c5ccd10"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/son/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/son/firefox-138.0b9.tar.xz"; locale = "son"; arch = "linux-i686"; - sha256 = "5be0c12e0e83bbea7b053b4df51ba7320ff0e214822ce14e5d14c9e44971c9f6"; + sha256 = "79591504796de1b699a8febe19f038fee6e21c53ced325671b524924d60e1fcd"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/sq/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/sq/firefox-138.0b9.tar.xz"; locale = "sq"; arch = "linux-i686"; - sha256 = "e5a6db327af4d67af18065f1a5d18e2be7bf9ddadcb503e8575e101250bcdb66"; + sha256 = "4aa03570a5770691d44c1b516b07a4fbee49e8b6c7c49b714d5c506ec8f0cca7"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/sr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/sr/firefox-138.0b9.tar.xz"; locale = "sr"; arch = "linux-i686"; - sha256 = "07994f4bd7508703b7a5139d5d8477f393456db89cdadb0a51c968f9f464c4cd"; + sha256 = "6bf3b13861ab008fbd2848638ca8e31f4908b62653750311bd5d04b943df9a60"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/sv-SE/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/sv-SE/firefox-138.0b9.tar.xz"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "82ff6854db693f27657f7debbdbf97f43fc3f60f52da7c8bd3c87534697ff4e7"; + sha256 = "a5147c697309b8382b3b455f88fac597edb69e9b86bf50fbe82941a643e63077"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/szl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/szl/firefox-138.0b9.tar.xz"; locale = "szl"; arch = "linux-i686"; - sha256 = "9eb87a599a91d17956c3e9c7a7b06a8e7ab9654eea65f71a3d7fa5090a89f117"; + sha256 = "3eecde28f0d74b81c89784a8382b8585bc71b2e3f668753b0ffb800829794c9d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ta/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ta/firefox-138.0b9.tar.xz"; locale = "ta"; arch = "linux-i686"; - sha256 = "c4dbba37fa0a342e8c6088f479f42b3bc8c3d53f236334616bbd14a8dabd8df1"; + sha256 = "81a448c362b79e99ab5c81992f1c0a898bc568dadccbd8ecb001507d177eeb39"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/te/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/te/firefox-138.0b9.tar.xz"; locale = "te"; arch = "linux-i686"; - sha256 = "909784c8df2dcccd9e00fcc87bb3d6cdcaa95da4654ad978a11a66a645de6d3c"; + sha256 = "68549f4aa2148b1a0fbccca32dc9ece402940eed6a739017bbe21f6085607e75"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/tg/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/tg/firefox-138.0b9.tar.xz"; locale = "tg"; arch = "linux-i686"; - sha256 = "19ea5484c1f9f99af606a500ac6eeecb12dc4f055a1d01646f1071907a36af46"; + sha256 = "deab8219a6f0e6fd29366337286a9efd5169f81aa67da43de0dc455ecac94fdb"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/th/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/th/firefox-138.0b9.tar.xz"; locale = "th"; arch = "linux-i686"; - sha256 = "673f47e625f03623772ad524381ea0e1a8a602410373b99b4cb71924ad765add"; + sha256 = "b17593081414d93c346a20455e0fae8c01c3fc1d76ccd604ac64498ac98d3208"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/tl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/tl/firefox-138.0b9.tar.xz"; locale = "tl"; arch = "linux-i686"; - sha256 = "53eb82c341b3c6f47b0c1771399544de8fdef59013a359062ca58016d38378b5"; + sha256 = "1a5880027e379bfcf6c111b5a71cad5c930e2aac3921d6fb61c11173fdefbdaa"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/tr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/tr/firefox-138.0b9.tar.xz"; locale = "tr"; arch = "linux-i686"; - sha256 = "58cf45699c6755973d52bfd383059c9e0136307930aa8ada6898b48269ffe4ee"; + sha256 = "f009df9f1135d25a99892918ef5a2aa012673cf2934bd81319a98e76aeeda218"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/trs/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/trs/firefox-138.0b9.tar.xz"; locale = "trs"; arch = "linux-i686"; - sha256 = "ab33fc658e6d8ffda3a78979a46bdc10b5417aa6895670fb1e9878ae9d87fc6a"; + sha256 = "bda503e515b051257f797daf5677c4063aac06a29b86b1f8e86f91b1e5dc04df"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/uk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/uk/firefox-138.0b9.tar.xz"; locale = "uk"; arch = "linux-i686"; - sha256 = "e2cdc873128c95e7e30fcdb93f13ce8a64d5531508d0d2db8acf1aae604bb697"; + sha256 = "64fcdbb6dfa902c320f5df52c5e9380c5d092bab18f874cdfd0d953eca7f1021"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/ur/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/ur/firefox-138.0b9.tar.xz"; locale = "ur"; arch = "linux-i686"; - sha256 = "45f67ee0b8275e62b95b8a83f4dac483a0373c374264e8bccc1d24cf72d9be3a"; + sha256 = "b16eaa083626d390e733298fd17c824967ba71594b61fcfe3fb06fb4b7b20b8b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/uz/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/uz/firefox-138.0b9.tar.xz"; locale = "uz"; arch = "linux-i686"; - sha256 = "c2dc005b058a65a5d5bcfa2b0b3368e82696b66428a2aa444503afb303b7a73a"; + sha256 = "fde686b53a4bbb25bc5cb524f259fc57317550197160dc4d05c2158503c68f63"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/vi/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/vi/firefox-138.0b9.tar.xz"; locale = "vi"; arch = "linux-i686"; - sha256 = "2b6cb8f3ff3ac076e160bc3c8e477a5281cf78c78242e0a7f7c99c1837c626cc"; + sha256 = "862e225b537c9942f8066c375f6a266bd10cf30f7995042360025c546ec3ac14"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/xh/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/xh/firefox-138.0b9.tar.xz"; locale = "xh"; arch = "linux-i686"; - sha256 = "4e17e93d6267555f72cb7fbc01c569cdedff5b03327499651062a8b9c3c2e75d"; + sha256 = "6314a7c898a8a371284f85c75948b1fa17bd71f36a38285810f247ecbd5e835b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/zh-CN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/zh-CN/firefox-138.0b9.tar.xz"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "ed47d919d59e8f6eb6e2b646ba47f7c09dde321b85ffc81589f12fa6d92e9d76"; + sha256 = "5fcac58db3829a7ab281fb76aa4aae0467ed593d1bee530b42cd2a72e4d305dc"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-i686/zh-TW/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-i686/zh-TW/firefox-138.0b9.tar.xz"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "16b96c4f8a09e54a9efbef8a230f1dc254982d5eb7ac41c68ab89c34285c02e1"; + sha256 = "08f41e28c063e2f470138c0be4a9ebee5dcdb57611ebd9a9fc5f923c28410ef9"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ach/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ach/firefox-138.0b9.tar.xz"; locale = "ach"; arch = "linux-aarch64"; - sha256 = "3b196277503005df9f969bb1543ff861b6cd42731cbe11bd80eecc7e43c1ade7"; + sha256 = "b3a5dcdf90048cc49bbe57cfd68e4f210bb30518088e48e480a58902e8563091"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/af/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/af/firefox-138.0b9.tar.xz"; locale = "af"; arch = "linux-aarch64"; - sha256 = "4c4c1720d79ad857c343f139cb5858b9b762cd57f37ce11cddc551884bc9c046"; + sha256 = "61616db98577db4d813f3b2712fa1774d5da4dc7255965fcee5a680c264f6f40"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/an/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/an/firefox-138.0b9.tar.xz"; locale = "an"; arch = "linux-aarch64"; - sha256 = "1591a882a0e01e85d5d6558cd4cc32d2fe83f4d2774fed899b20162801abae9a"; + sha256 = "3dfc27a2d687c00b48828c9af94b1a97dbeb9d7efd65092794719dea0361c149"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ar/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ar/firefox-138.0b9.tar.xz"; locale = "ar"; arch = "linux-aarch64"; - sha256 = "f401ae073f054e7961898e2002281457a67434283293a2777b8ee55d8e3746a5"; + sha256 = "014a805ce15b122479c219c07c8dc1d7f0aaab69ee79bd7e3f32066dba41f591"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ast/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ast/firefox-138.0b9.tar.xz"; locale = "ast"; arch = "linux-aarch64"; - sha256 = "c3dd45c3065affbf8c9659d17217e797c305589a5dd45cbc4429dfa7b6278af9"; + sha256 = "d4e0ddc34e456c1efefd2ede0a73f6b72f4ce2a71b52cf270deef8b947afb153"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/az/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/az/firefox-138.0b9.tar.xz"; locale = "az"; arch = "linux-aarch64"; - sha256 = "7e6f798ba0bd0498eda602f138c83865046eace972f4dd7f3a2dfc2dcbd68f44"; + sha256 = "cc96766d10bebe896deadbb7734ce79f43b1d1f5cc031eddcc65b70f1f0bf1b1"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/be/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/be/firefox-138.0b9.tar.xz"; locale = "be"; arch = "linux-aarch64"; - sha256 = "b9b7e36c7db06ed69e63206d398fc5383308b4c2fd39924ee79c5162e6441831"; + sha256 = "aa78deee5a644cc709c0793d7864fe613a8a811a4095978fd700ea83cff53926"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/bg/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/bg/firefox-138.0b9.tar.xz"; locale = "bg"; arch = "linux-aarch64"; - sha256 = "6a2a894f19ac8299838458aa6f29a15ed5018b018e5de3f79b490e18ed54bf4e"; + sha256 = "a3fac26ec3379387260297a207a3698c74704cb296d2ba52c17ce712dfd6b0a8"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/bn/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/bn/firefox-138.0b9.tar.xz"; locale = "bn"; arch = "linux-aarch64"; - sha256 = "e2551e717cd11894f59d3f0c31f4b29b1e06d559173e8230404baf984f803d7d"; + sha256 = "bb51c9c58df3fcc342117dcfa52efbe78f5e42e9f4eff42dc30b095563ecc165"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/br/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/br/firefox-138.0b9.tar.xz"; locale = "br"; arch = "linux-aarch64"; - sha256 = "906b66ff21ae7ce07aac26048b94eab58ce97aa625d5934631c82e4116c41188"; + sha256 = "a609173876f5ee8aabd2788cfa97a9f10c746c0cb4da45a47c996e85a5e95837"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/bs/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/bs/firefox-138.0b9.tar.xz"; locale = "bs"; arch = "linux-aarch64"; - sha256 = "f9195437102901f1064ad147ebbb13b62ad67dffe7ff2f2cfcb1eccd289489da"; + sha256 = "d4760426b56355bf41a2576938ce69529f7dc3ece3bcb240b3895a747ad7a5e5"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ca-valencia/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ca-valencia/firefox-138.0b9.tar.xz"; locale = "ca-valencia"; arch = "linux-aarch64"; - sha256 = "383b476b71cb2388c89ab67876fcaeb1366706babef769d819e10b87deddc397"; + sha256 = "431e4ad0950c85baf95a50fa23e545c57ac8ac85f2d429bda9fd7d1fbcb0a350"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ca/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ca/firefox-138.0b9.tar.xz"; locale = "ca"; arch = "linux-aarch64"; - sha256 = "efc0ecefd65385241e3002a94707f798da83062d955262c8e8177c466d8fb6fc"; + sha256 = "7a45db02f918b511399e2ee8c39a6e35be202308c1131e8532330d02843c3789"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/cak/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/cak/firefox-138.0b9.tar.xz"; locale = "cak"; arch = "linux-aarch64"; - sha256 = "736255656ee54d35d6ec58579c95d638c87746064f4dc3e4fc9ecf70ec830095"; + sha256 = "58291146a026b5687e2fb8470ebd6973d1de4f65a8a9bfddf03a0477a192d98c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/cs/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/cs/firefox-138.0b9.tar.xz"; locale = "cs"; arch = "linux-aarch64"; - sha256 = "42405a06e3546bdeaec8dfaf0a5a946580f5ca2b61b9c2618ee744beb5dd2bcc"; + sha256 = "ae76e0fbd3eb5fc9ef01898e29da8e8583095257fa10453eefafb84e624389c9"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/cy/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/cy/firefox-138.0b9.tar.xz"; locale = "cy"; arch = "linux-aarch64"; - sha256 = "fc30088851a876897b0b8c5518e3e43fdad61eec91defec5214644b3fabbc90d"; + sha256 = "26733d6bc8d8a67f2dbacdea565045f619ecfe2a53bcef17836b1fa5132b3486"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/da/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/da/firefox-138.0b9.tar.xz"; locale = "da"; arch = "linux-aarch64"; - sha256 = "d26d5e1aca46c34ff6c37436db222671212b921d7f21f403bdae1ab378dca4f0"; + sha256 = "5fba08c281f591ae5361df0ea1fc5415071228a4d4fe5bd59fdfce2f2ac4af48"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/de/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/de/firefox-138.0b9.tar.xz"; locale = "de"; arch = "linux-aarch64"; - sha256 = "e2494b123723b573fbace51a39aef7c4bbfc9f3d371d60bd8b21534053dc26c6"; + sha256 = "9f61e04068005e94a75b412bd5e7f2b098825a8f0b1db65dc3bfe833ba82d042"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/dsb/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/dsb/firefox-138.0b9.tar.xz"; locale = "dsb"; arch = "linux-aarch64"; - sha256 = "f3cefb7ab04a7ad3787e326a1f7a25127e285468ea9c29abe91b90bfa2deb192"; + sha256 = "8e6508d47efa031e918cce5bc12fff6533dc7bd14652079a9f6e5fb8c31277a1"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/el/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/el/firefox-138.0b9.tar.xz"; locale = "el"; arch = "linux-aarch64"; - sha256 = "18e759e3dd6a7d64549428ee58cdc5abf99e199dff7e8108bae0d4ec1145323d"; + sha256 = "6f55e7c404a7b717e8b08026cdf9008e965e0f7c126506dc5d9f3634b9d4ec0b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/en-CA/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/en-CA/firefox-138.0b9.tar.xz"; locale = "en-CA"; arch = "linux-aarch64"; - sha256 = "f59123050424c550e09a40115d61dd3356a6e2c38d975618f96f7f2a1b28eadc"; + sha256 = "8e9e4f753958ab818c0da70c63083fd48a9b9eb3c223749f033b68e4a6591720"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/en-GB/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/en-GB/firefox-138.0b9.tar.xz"; locale = "en-GB"; arch = "linux-aarch64"; - sha256 = "5c999fca7a054beb4566d9c7a6322274dec7a77ceb276abbe18784fcd41e54b3"; + sha256 = "5f0c8566c3bf8a77286066ec9f8c2d5dcbc96a70f7e20c475481ce35f4912445"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/en-US/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/en-US/firefox-138.0b9.tar.xz"; locale = "en-US"; arch = "linux-aarch64"; - sha256 = "4dfa71b44101481e2b3c24133753af4fc89ef67f8d78cca03f687e5561e104d5"; + sha256 = "bd505a4382ac7712d3c3ca078d3a61b0f23aa6ac8524f3c1492f160760f90522"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/eo/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/eo/firefox-138.0b9.tar.xz"; locale = "eo"; arch = "linux-aarch64"; - sha256 = "add402adf44e69a7c70dd5628635a20dae85825d29c6513bde49c0a3713abad8"; + sha256 = "5603cad76d242acae6fd09b215959733edeb82f3b6dd7584e0c4f8b7a963fc0a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/es-AR/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/es-AR/firefox-138.0b9.tar.xz"; locale = "es-AR"; arch = "linux-aarch64"; - sha256 = "3d061865ae2248b82d48a547bf7a790cc7a3738c8b504f9777c5733ef24f8572"; + sha256 = "aa55cf4b5c45be8ce73a198dbe95f549940d2e46481c4db12fe12250f56f643f"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/es-CL/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/es-CL/firefox-138.0b9.tar.xz"; locale = "es-CL"; arch = "linux-aarch64"; - sha256 = "83cf44d063db1cbb0500c7db456377eb2511d7b87decc7efe1e0864ef924cc71"; + sha256 = "34f0b4ce329cb4baeaba6ae6de573083bd7e6f0968a94f4c8f9e01098c19971c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/es-ES/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/es-ES/firefox-138.0b9.tar.xz"; locale = "es-ES"; arch = "linux-aarch64"; - sha256 = "06997992d5a1de81e5feb78c4259b8aa54ab79f3eda23ec24b620cc1836dab70"; + sha256 = "1cd37693cdefec97b03f2819188674bc78726d3816a70e0cd516a239d788b12e"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/es-MX/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/es-MX/firefox-138.0b9.tar.xz"; locale = "es-MX"; arch = "linux-aarch64"; - sha256 = "21911f988a6a69eb9cfb1ed67199eb48e35922a1641c290e996a2bd31a534fa5"; + sha256 = "29aa931f1de67ac4b4629efacd5b87d407ffd32dd178c6742381c70b92dd78e1"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/et/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/et/firefox-138.0b9.tar.xz"; locale = "et"; arch = "linux-aarch64"; - sha256 = "986ca26d910b6eb23944c6cea9933b16cf8dbb849f5d5c9394a806293b4d628a"; + sha256 = "14bc35cbb1361fd4c94796b44f6bb7a49023a7f3b402f9bcf056c96828fa5e6e"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/eu/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/eu/firefox-138.0b9.tar.xz"; locale = "eu"; arch = "linux-aarch64"; - sha256 = "c92a2d15ed2643501b20a01ef41c23331214e4f8f973acede13a070c99491e1f"; + sha256 = "8bb160e6b106bc8cd73c2e5effbadf06098635f26f8a61360a6791697c173829"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/fa/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/fa/firefox-138.0b9.tar.xz"; locale = "fa"; arch = "linux-aarch64"; - sha256 = "dbe2930eefa9ec5de73803d8df25332b50a9ccc463445318e344091d7a37e745"; + sha256 = "84af9ca5b7f6d1b0bc04c53b97aebff06d9abe5a97763fd44fe9312535f68d7c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ff/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ff/firefox-138.0b9.tar.xz"; locale = "ff"; arch = "linux-aarch64"; - sha256 = "b40d33fa1cb6c635f9f32ab353006d1cbecdfeb7cfa9fa409c9e2e5a1e641e3a"; + sha256 = "122fb1ea611489489315197ac978d9c5611df18963258c904ca314399c65494b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/fi/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/fi/firefox-138.0b9.tar.xz"; locale = "fi"; arch = "linux-aarch64"; - sha256 = "14f31a1c0bc7dcdbddcd0bf8f77fc76e0b07d88063b0aecd192e71350e1ea071"; + sha256 = "376bdc8270248da5c87013cd77d9745ddf78072955be2d124de1726d9bf84a16"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/fr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/fr/firefox-138.0b9.tar.xz"; locale = "fr"; arch = "linux-aarch64"; - sha256 = "90a857a5ff729f082d9efe2836758a5a9c3657bd903b83f4ff0f31c351452d9d"; + sha256 = "e29430e6192fbfd9a7b21fda2e7ea97fbc3c22c0ef73ae88852a4f8cbe0a2c35"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/fur/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/fur/firefox-138.0b9.tar.xz"; locale = "fur"; arch = "linux-aarch64"; - sha256 = "46b92c4ac920d55ee56f91962d4ce3950cee6db210c1966b6c2e770c1c4ee254"; + sha256 = "2379c204e2880d13b1469232599620895e81f014a8cd8b9ca76af48fbb0b36cf"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/fy-NL/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/fy-NL/firefox-138.0b9.tar.xz"; locale = "fy-NL"; arch = "linux-aarch64"; - sha256 = "05120cf0443af71dc59429bf17ad3cc6dba34e6327833030b7358cd2e4223b99"; + sha256 = "2675eee6a02884e89d89dd6f1b890965bbf4b1c9cb6133ffb1859f58a5370aee"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ga-IE/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ga-IE/firefox-138.0b9.tar.xz"; locale = "ga-IE"; arch = "linux-aarch64"; - sha256 = "1831a5f2d1459c59641547d365b3e5580e9507fb212f6ebbe75b3d81559ca958"; + sha256 = "9e3c2e165a0781ccb07d3df328f825167da645779e666ea00e74af478fa13ce3"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/gd/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/gd/firefox-138.0b9.tar.xz"; locale = "gd"; arch = "linux-aarch64"; - sha256 = "970724b0375e8d311bf96c657fab37943e185efb7047e6ace7d8edf96f5949e0"; + sha256 = "52ed80ce3510e6d64599e23234a0e0bcb223406a65b7ddc35d4afc903b1e1d6b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/gl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/gl/firefox-138.0b9.tar.xz"; locale = "gl"; arch = "linux-aarch64"; - sha256 = "9dcb3ff8bd2081947b84c642b0cb950c8166bbbc341ccb437e64b3ae5ed0d03b"; + sha256 = "e48b93aceb646321799b04ee43fbde6cc863ad99c63f6d6c12f79378672df3dd"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/gn/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/gn/firefox-138.0b9.tar.xz"; locale = "gn"; arch = "linux-aarch64"; - sha256 = "059a2578855b0b54d26e133a936e9aa0fa6d08178397c0a371700aa486e673f2"; + sha256 = "d377e6f7b97fea0bc0ce80cc2cf7fcf60e4ac3e5601599b471a017bd2e59d525"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/gu-IN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/gu-IN/firefox-138.0b9.tar.xz"; locale = "gu-IN"; arch = "linux-aarch64"; - sha256 = "8fcb88286518948765b1940152621c29e8a3a68888b1bad20ad3782201d0c073"; + sha256 = "9240c39ae1ed22715a9eb4179191ff8415a499e70dfe167fb599f425467b1ab3"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/he/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/he/firefox-138.0b9.tar.xz"; locale = "he"; arch = "linux-aarch64"; - sha256 = "40e1193a32f7867ad96e70211f1fffe4be966730ec9e5a2de6f62510bc46ec18"; + sha256 = "5c867a8a82947d7489e7c57206f49f73476a29c0a519b127584f33a26acb2c8a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/hi-IN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/hi-IN/firefox-138.0b9.tar.xz"; locale = "hi-IN"; arch = "linux-aarch64"; - sha256 = "b4b22f94dac456fbd8a660abffe79c7e7394efc699f0fa9efe64d0ade69a47ef"; + sha256 = "f49675fe5e4c934485a47deba2646232b7f110a0264b3d072d2ac327293e1e77"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/hr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/hr/firefox-138.0b9.tar.xz"; locale = "hr"; arch = "linux-aarch64"; - sha256 = "5066e48164d76550702532513057746e43b09903a1253a5b21f8a87277f888b7"; + sha256 = "c9bbaa0acfa79eb9be658b49e8af0e2abd3a7a8840dacd78281fd38ba187925c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/hsb/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/hsb/firefox-138.0b9.tar.xz"; locale = "hsb"; arch = "linux-aarch64"; - sha256 = "3f785406522834dedc9382b084c7ce32d12c9fdf37a62a4dc0ce1272f6900e93"; + sha256 = "02ec3ab3f1ef13d7320143dfeb10c653566c057dc4bc4c18bcd0dd4c89988d40"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/hu/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/hu/firefox-138.0b9.tar.xz"; locale = "hu"; arch = "linux-aarch64"; - sha256 = "299d24c1b80a0ad9f78700d7b3d3f9cb76663acb065bd28565cd2f702695c2b2"; + sha256 = "963b2a9338dd1d07d9be66ca581eed34448ef67769ea01db327ca38d05ecade6"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/hy-AM/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/hy-AM/firefox-138.0b9.tar.xz"; locale = "hy-AM"; arch = "linux-aarch64"; - sha256 = "85a5fe260697ce9d43757942a0066f9dba374b8728761fd5ad1137e0c01b6425"; + sha256 = "1795ba98bb256743d6cfef5129f702b50408ea9364046e01bd51c906b0bbfad9"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ia/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ia/firefox-138.0b9.tar.xz"; locale = "ia"; arch = "linux-aarch64"; - sha256 = "83d85c15764744e8b077c6a06b01b79f5145cdc8425a2325b5270d3ee750b812"; + sha256 = "46048dcc9202695c89c791690e591f9b5035487b9281dcec47e2985639d4d8de"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/id/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/id/firefox-138.0b9.tar.xz"; locale = "id"; arch = "linux-aarch64"; - sha256 = "4d86d01fcea88982521d63852799b2a2de37e86acfe1340d49bd7dc53ca08dfc"; + sha256 = "9f7120fd470a5b94fe141f570ff4f330260bc3ab48065ff3537a6d5b9fc63d67"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/is/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/is/firefox-138.0b9.tar.xz"; locale = "is"; arch = "linux-aarch64"; - sha256 = "2efc236a034389823e36c7b17232949cb0d02aa85d666e54ab1eac17094d5635"; + sha256 = "bae7747d465a9cab6feeeb686fad9df3ae02ca3aa295959e510e6b0a8b59f97d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/it/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/it/firefox-138.0b9.tar.xz"; locale = "it"; arch = "linux-aarch64"; - sha256 = "a6b71e4fb874c35e00ee58e11dc797612248e2f90fbc3ca93ac92a972d03e668"; + sha256 = "f9119db9309e404a3bc0754529eef7622805a44b45d1bad2f6650e66cdc2dce9"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ja/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ja/firefox-138.0b9.tar.xz"; locale = "ja"; arch = "linux-aarch64"; - sha256 = "05e4cd8d61f3db19c2fdc565291de72cfd562a8b681f5eaa26a9cc800ff09660"; + sha256 = "678d1a867e95585bb80f880f8dfdc7e77559e38fa5df7a19bcc8eb06931948d2"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ka/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ka/firefox-138.0b9.tar.xz"; locale = "ka"; arch = "linux-aarch64"; - sha256 = "162e1069bfc3f67a77117bdd24068f013a661c03c1358740f9cace954b4de6a8"; + sha256 = "045f9c26d36ed832caab5453324d7383dab8b4bf02d8d37e00aace412abbcbbd"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/kab/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/kab/firefox-138.0b9.tar.xz"; locale = "kab"; arch = "linux-aarch64"; - sha256 = "532502d6b0ad9b1bd07cae59bf180f6f048591cee3ebc933b28b890d7fc3bdd3"; + sha256 = "be2fa3225ce3d124f92dd54d01e4e0a278eabd38d9204b650cc80393cc8ddf79"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/kk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/kk/firefox-138.0b9.tar.xz"; locale = "kk"; arch = "linux-aarch64"; - sha256 = "cbdd8ea2f73dc6713b46b2dc0c0308ecad5d0b89d5198d4de2a0431419d4fff6"; + sha256 = "3327b59d11dada324c5a520be43b33308981c4f95dbc8cbe1b8482aa2d2327bb"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/km/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/km/firefox-138.0b9.tar.xz"; locale = "km"; arch = "linux-aarch64"; - sha256 = "877882f3ad72e7b84882221db20a820a50bb535fd72e670899f25de44f4ff7c8"; + sha256 = "b924d50652b15b215776138ace620651589f83765b4968287b56400c0f11b638"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/kn/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/kn/firefox-138.0b9.tar.xz"; locale = "kn"; arch = "linux-aarch64"; - sha256 = "32213f3ed05dcf7724d35d3a61deda6cff9bf73878ca489cb22b32e992916279"; + sha256 = "679115c2a945256af04c0eb58f43613c9a3264498b8588128575684b6756dff8"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ko/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ko/firefox-138.0b9.tar.xz"; locale = "ko"; arch = "linux-aarch64"; - sha256 = "55e5a8581d2c33508fed7c0429c66f5ff4c9dca439a8528c08cd84c6765cec6e"; + sha256 = "6abcb8fecaab5e40ca52f52c7cbd83c27a7dd5b7baf7bc29c8ad5337e678b024"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/lij/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/lij/firefox-138.0b9.tar.xz"; locale = "lij"; arch = "linux-aarch64"; - sha256 = "bad6c22ad94060bed5dca45502b0471be6537cc39a728709eda238618ea49464"; + sha256 = "9635e07ff9d90b64de6467171693c59e353be6ec61adf4c2f48dc2657373e285"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/lt/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/lt/firefox-138.0b9.tar.xz"; locale = "lt"; arch = "linux-aarch64"; - sha256 = "093b2db2967d5c0c8e6c1b99d0ce0413bdc9cf7d6791cf3cd67a30a149db62cc"; + sha256 = "8ceb7a07a87bae1e69ed16651d1226c530ed58339b3f5c4cc9f3930b8bb35ecb"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/lv/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/lv/firefox-138.0b9.tar.xz"; locale = "lv"; arch = "linux-aarch64"; - sha256 = "b27a9ac8b9742388fc532cca20cd9277a54c0648e7c2d8ceed2609ac6d984aa2"; + sha256 = "1964406e0e6651ef2fc8bbd87fcd5981c6fab2a07cdbaec02228ae69561da551"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/mk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/mk/firefox-138.0b9.tar.xz"; locale = "mk"; arch = "linux-aarch64"; - sha256 = "fc9a5de9be288315f26fec91d48be673cc8c622da85e1408e2e2a6eb382c55ca"; + sha256 = "d2a17fda49006d15fd1e0c160b0a165e3ab0b5b0707913754a699d96ae9ac6ca"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/mr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/mr/firefox-138.0b9.tar.xz"; locale = "mr"; arch = "linux-aarch64"; - sha256 = "577d6953dd6d6ca5515cb085d66f46f9f8360b99a52bbfed302d098745dee03d"; + sha256 = "43db65397b767b0b51e067ae721787369c25e7669169234a76ce1e9587fb7643"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ms/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ms/firefox-138.0b9.tar.xz"; locale = "ms"; arch = "linux-aarch64"; - sha256 = "e019304641d77b7ce4f13a392014575764b297eb05f17b520aa81c03f4439e5a"; + sha256 = "d93b2cdf1e7ef6e293503ca4cca93c363e07d820827fdf4f7f9296096c2bf416"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/my/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/my/firefox-138.0b9.tar.xz"; locale = "my"; arch = "linux-aarch64"; - sha256 = "23280f7ba14f2b845646ed0baccf2fc77d03dd4822775d9f184003b7f06be094"; + sha256 = "86a890cfc60f6688f71149136dc8e013b1aaab3aaee05ac0abcad220363a2f71"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/nb-NO/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/nb-NO/firefox-138.0b9.tar.xz"; locale = "nb-NO"; arch = "linux-aarch64"; - sha256 = "acb68b82ee7d04d9992bfb0e688d2d3245ce04ca90825fd7bf2f1e218ffda227"; + sha256 = "f02dff85efe2df1a74b6a94f9cab6652d896c0bd8502a726d4c432f2b761b39d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ne-NP/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ne-NP/firefox-138.0b9.tar.xz"; locale = "ne-NP"; arch = "linux-aarch64"; - sha256 = "ae8d2d6d50ea13dfc5436fe32b839594f5b2e6184beccc325d452eb6152a9d15"; + sha256 = "9a2479d11d4a920b20f232f01a1e4edcffbb92fd9750c3fd436f94530c8f4c00"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/nl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/nl/firefox-138.0b9.tar.xz"; locale = "nl"; arch = "linux-aarch64"; - sha256 = "8dc3ac4511ee746803c8242085dccc64db983e84553154c50dac8a8bd79010ed"; + sha256 = "b5faddbb954f0de75128bf1c2c291fca9e35ff27e106960ff479f320f2397283"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/nn-NO/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/nn-NO/firefox-138.0b9.tar.xz"; locale = "nn-NO"; arch = "linux-aarch64"; - sha256 = "20a4e45dd710ecf86abb69adf1833a7e99d3ff91f43170300fae0b3747df56b4"; + sha256 = "ea432a5d3d36a5ab2fb3f873f98e72748cc1e9b67703ccb7bf4dd83b21f146eb"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/oc/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/oc/firefox-138.0b9.tar.xz"; locale = "oc"; arch = "linux-aarch64"; - sha256 = "2775cdd62550deb832c8d5f4c0bfa2fdd26da6fe64d5602ec1b22709c4d3abc9"; + sha256 = "4722cd4ea6298d9eddfe51c7d4e86c5532f12926707b7437f262547becac514f"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/pa-IN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/pa-IN/firefox-138.0b9.tar.xz"; locale = "pa-IN"; arch = "linux-aarch64"; - sha256 = "ad81fb9bdc397a9b43f8024092117cd57c70f5e83c9d658b6cbb4b61e34efe0b"; + sha256 = "f3d596b36c35fb0bead0ab8706086543115b0b982e1fe34e41f3da02d3cb8c65"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/pl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/pl/firefox-138.0b9.tar.xz"; locale = "pl"; arch = "linux-aarch64"; - sha256 = "02d9cbbaed272187a403adf80670e59bc752b090235d752e49202fd2ca80be67"; + sha256 = "0e2f4a3da5549c45169c1bfa59c3de69ccb50b4c2423c5888596e67f2f880f95"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/pt-BR/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/pt-BR/firefox-138.0b9.tar.xz"; locale = "pt-BR"; arch = "linux-aarch64"; - sha256 = "8b02a569ead2a0ebe711e43504c328a2389016a81bb407b3e19d5da8cbfe1d6d"; + sha256 = "153b9ac626d7f6ea196f0fbbd7a75aea514eb43e367d345f40f6a59a5b2cdb88"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/pt-PT/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/pt-PT/firefox-138.0b9.tar.xz"; locale = "pt-PT"; arch = "linux-aarch64"; - sha256 = "9dca92b6b691f5ddcdee0980678932cf308152787f00e0080a6efd6faa7f87e6"; + sha256 = "2a14831dfe8d975e6791d9175bf138166d830943058b9dda12148b492d53b3f8"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/rm/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/rm/firefox-138.0b9.tar.xz"; locale = "rm"; arch = "linux-aarch64"; - sha256 = "26c27b3f6d4cc1107202802da71ffa89e597333285d236712a5e2a979d9d77d9"; + sha256 = "2300ff2ef21cc24d54d62e73eca0e696e3cd8b638f8eed701528a332cfb1c36d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ro/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ro/firefox-138.0b9.tar.xz"; locale = "ro"; arch = "linux-aarch64"; - sha256 = "cae8fb5ac0a106ae2d3d297a46006641d3e6276df80606ecde9cee48583d1df2"; + sha256 = "ecf8c132a50f70cfa47037370e21e8d1b3ec20b26b7e83cca741acc80cde1519"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ru/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ru/firefox-138.0b9.tar.xz"; locale = "ru"; arch = "linux-aarch64"; - sha256 = "980cc3556767d66b5e9d5575b0d500645868e6196ee5c666fa2486a3173f3e20"; + sha256 = "96fd4dd88a55fad60031b76247a0bcb4a8ccd2321f2d77a90b79d65588a080a1"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/sat/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/sat/firefox-138.0b9.tar.xz"; locale = "sat"; arch = "linux-aarch64"; - sha256 = "fd101a85ace561a7917c400fe9a93332416c253f5b055439ecf2ee3357214ca2"; + sha256 = "48457e19f2d041545c6bb991a6504814f84176962ec262a85834505551438c2a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/sc/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/sc/firefox-138.0b9.tar.xz"; locale = "sc"; arch = "linux-aarch64"; - sha256 = "220984510ef0586360b034884fb1399a35da86cea1468bfa9d1133733af5380c"; + sha256 = "59e1b805484c3db70d002b58fee09a0c5b062558c36635bc73df99c84beb3f3b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/sco/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/sco/firefox-138.0b9.tar.xz"; locale = "sco"; arch = "linux-aarch64"; - sha256 = "5c98e111ca6cae248ab4a5cecf94e85f0be4df39dd02ad23fbe1c98015681a9e"; + sha256 = "0e11d0746ab91b2a49398e3ef5cae1928cd119ed9bb29862025534af6e292945"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/si/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/si/firefox-138.0b9.tar.xz"; locale = "si"; arch = "linux-aarch64"; - sha256 = "75c848fe0c4373b46267ad06207f9d2605268d8f1a0f5d802ed7da3275595bfb"; + sha256 = "7f9005fb73d6bc79a459b9296447cf51e5d7f32919377613642f0439f4469a84"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/sk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/sk/firefox-138.0b9.tar.xz"; locale = "sk"; arch = "linux-aarch64"; - sha256 = "ce4a35a22c3f99fd4baa4e2c3109211f8e0543b8a39b136ae5ed2b6e21f7ac91"; + sha256 = "7f907c90e416f4538067853e3ba6877aa9e8ac6720fc4b1fc708980d8fadee1a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/skr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/skr/firefox-138.0b9.tar.xz"; locale = "skr"; arch = "linux-aarch64"; - sha256 = "568945d795198946504ea118d85f195b802e7fd08a9ba9fcecc57cb401f35517"; + sha256 = "a72da3fd15ed45d33a697e41a8e2469bac5cdc097b1b6003ab7b9297302c2b75"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/sl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/sl/firefox-138.0b9.tar.xz"; locale = "sl"; arch = "linux-aarch64"; - sha256 = "7ebfbbeecdf1bc04fbf5b31ce0f91109e3412378ead61414a6306697bdd03110"; + sha256 = "46173b2890ad67d51d159206b99af9df09508303b10e0e89510cc50f319d5f9d"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/son/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/son/firefox-138.0b9.tar.xz"; locale = "son"; arch = "linux-aarch64"; - sha256 = "a094289528d2f1b31e174cbe3551c5744747a955d3341c1b0fac38672fd21e2f"; + sha256 = "8062d7eb1d41995eabb13df2166b91a1fb6490b1d69b349c47e5d0eeafcac3c4"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/sq/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/sq/firefox-138.0b9.tar.xz"; locale = "sq"; arch = "linux-aarch64"; - sha256 = "88a50d4a29fc8ce3b30e60c0ff3bfd3e504e611056833bf84a4aea8048157220"; + sha256 = "635a912bb9eb191570b4fd72236555bf8e4756c4d51fc957b42746f07c418b07"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/sr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/sr/firefox-138.0b9.tar.xz"; locale = "sr"; arch = "linux-aarch64"; - sha256 = "4b1407e1fd2bf6d91e239ffb4fe1dd809148f1332dc9bda76e1d379020d53320"; + sha256 = "6bcddcd3690c970fd1d2a1681384eb6a5ccfe91db46ef14ba404ea44ecd069f3"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/sv-SE/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/sv-SE/firefox-138.0b9.tar.xz"; locale = "sv-SE"; arch = "linux-aarch64"; - sha256 = "23b4e53da67d41f863679210d741e7eec588a5874506b8e06193e2f46ebbafc1"; + sha256 = "33ae8f77d6c641fff24f81c6f52e1fbb002b978e9efc0c4749f3970f8d893d30"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/szl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/szl/firefox-138.0b9.tar.xz"; locale = "szl"; arch = "linux-aarch64"; - sha256 = "f3c1ad7a5bb6ac5b7ce711995728bb32f6c1b8226e79f9e14aa037e2709c37ac"; + sha256 = "35de5f3c2245996b9b782092a442ac8ae9d862386b51e61df5515ff1337a0805"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ta/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ta/firefox-138.0b9.tar.xz"; locale = "ta"; arch = "linux-aarch64"; - sha256 = "9de6e29250da5f1fbc982c30dedf05710e5c1f01be5e5c137c53604294e14f1a"; + sha256 = "7b10692fb923dc7639270ce26f1821f87c068c56ae52d486ddc3620eac807a5b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/te/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/te/firefox-138.0b9.tar.xz"; locale = "te"; arch = "linux-aarch64"; - sha256 = "999795333abea2bfd2d4b12b3a7a04659f9e297d9b038ec90ab056d5bea6b325"; + sha256 = "b2c3dafa4a9b2a21c77dc97569c15b0c17159dde8d534d7a0cfd981cb748e249"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/tg/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/tg/firefox-138.0b9.tar.xz"; locale = "tg"; arch = "linux-aarch64"; - sha256 = "96ddc227ecf61c666a2a46800582992cdc4dcf4730d5495cf95b6952bf2fc032"; + sha256 = "844e601560c6d8fc2a9139bb9f3000f3685a82fa51d49e56ccd743b77a8f501a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/th/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/th/firefox-138.0b9.tar.xz"; locale = "th"; arch = "linux-aarch64"; - sha256 = "6b6dab8bd8a146cda141b544c66b5bedbcd03c00ecc0668a80a689a4a4b3a42e"; + sha256 = "7de1e10d58696ec64446d44aa372dbc1cf685379e37258b951ece720b375c435"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/tl/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/tl/firefox-138.0b9.tar.xz"; locale = "tl"; arch = "linux-aarch64"; - sha256 = "87e18e3fb92be33fa6abdcf55604b050e6e1f616499a375a11e8d26381bd3313"; + sha256 = "1faa389eb1eec33db30a1a2faf91adf7e21a9a625231d55b7312a3d4e5d340af"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/tr/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/tr/firefox-138.0b9.tar.xz"; locale = "tr"; arch = "linux-aarch64"; - sha256 = "c67fe64d226a4677b1d1850f7eac39933145874172780e48b02c37357fd3131e"; + sha256 = "3739faaaa71f287b2b9f092dd8a0e8854a801aa457741a28c6c97cfb28f54c3e"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/trs/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/trs/firefox-138.0b9.tar.xz"; locale = "trs"; arch = "linux-aarch64"; - sha256 = "914e05cd142834c79213901acbc88bbf04f0f7d4e3383be880e05c8e3e6cf001"; + sha256 = "92b65b41479f11698e22a84d0a0a0baed2c165ff3ab554c1c22f861ba00f573a"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/uk/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/uk/firefox-138.0b9.tar.xz"; locale = "uk"; arch = "linux-aarch64"; - sha256 = "7aa6e8d978e08ffe357be73c375c187c92a3e3ea36ca6f605190fec97854f035"; + sha256 = "a3b14065f7d2edaa7231053251c3457586e1a3950332fed04ba6b0642be5b4fa"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/ur/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/ur/firefox-138.0b9.tar.xz"; locale = "ur"; arch = "linux-aarch64"; - sha256 = "7bb715ebd55b803b01472049f1ac3877983f834b35197e5a3e013955d5b444aa"; + sha256 = "8abaedd96efcfa46166e4d6856213104be938d33bba80ba2a1f47fd8fb70d2a3"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/uz/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/uz/firefox-138.0b9.tar.xz"; locale = "uz"; arch = "linux-aarch64"; - sha256 = "ccfb7abc2394b4930596c8292c4c9360cb3262e285609c68545ff49aaa1363eb"; + sha256 = "445157c2c60542d012d33bf409ed8d498ae55f01a69d51437d44387defac62c1"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/vi/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/vi/firefox-138.0b9.tar.xz"; locale = "vi"; arch = "linux-aarch64"; - sha256 = "cad04e1b861f11e3dba7e3ef011c202436be3d17f5721d8ca59efc9150e0e444"; + sha256 = "08993658fa19a360374bd5fb0fd6c2d22967a7e75d5914f1668fa6277c851b6c"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/xh/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/xh/firefox-138.0b9.tar.xz"; locale = "xh"; arch = "linux-aarch64"; - sha256 = "86e748b9f8cb09e56ceb4474efe989edd0cc798ca1244243a30b316eb67c2e96"; + sha256 = "3b324f18ce85aeaba1fc11d92680e2a2ccbadd8b7149a50330a56092902f17fd"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/zh-CN/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/zh-CN/firefox-138.0b9.tar.xz"; locale = "zh-CN"; arch = "linux-aarch64"; - sha256 = "f2040156cc69a5e848a9b5e5dd6b6b13ceca9dc7add672794dfd80149d845a64"; + sha256 = "6f4e9410c342f0fcd2dcb1823cdbda770e445e2f420ded3d4b445c6cb2f5441b"; } { - url = "https://archive.mozilla.org/pub/devedition/releases/138.0b7/linux-aarch64/zh-TW/firefox-138.0b7.tar.xz"; + url = "https://archive.mozilla.org/pub/devedition/releases/138.0b9/linux-aarch64/zh-TW/firefox-138.0b9.tar.xz"; locale = "zh-TW"; arch = "linux-aarch64"; - sha256 = "7df10de9a1115b96040a123793f2119f63a12da18dde27acd6ffe6e2caf8aa0b"; + sha256 = "cddd4934d1ecc6e20fa82ec79d7c9d7846956aacb51e5a8d8e3b4283558a1bb1"; } ]; } From 8c3b04e3fa4356a5ab87a53bf2661f387f02000e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 07:03:00 +0000 Subject: [PATCH 076/210] emptty: 0.13.0 -> 0.14.0 --- pkgs/by-name/em/emptty/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/em/emptty/package.nix b/pkgs/by-name/em/emptty/package.nix index c87ea85fe6b2..28f5bac65e9e 100644 --- a/pkgs/by-name/em/emptty/package.nix +++ b/pkgs/by-name/em/emptty/package.nix @@ -9,13 +9,13 @@ buildGoModule rec { pname = "emptty"; - version = "0.13.0"; + version = "0.14.0"; src = fetchFromGitHub { owner = "tvrzna"; repo = pname; rev = "v${version}"; - hash = "sha256-xZfR4sn20fDaTNAxuxVflpr+8AFg5Z7vesO7P8Jxw6A="; + hash = "sha256-AsIt7EI5RkSchhaMGKofOsfPNROhX8f5gDaqZ7Q2394="; }; buildInputs = [ From c4b804870deb1ebb996b1e57699601704b0eb343 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 07:04:04 +0000 Subject: [PATCH 077/210] terraform-providers.gitlab: 17.10.0 -> 17.11.0 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 6258ebdbf37c..4431e498104b 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -498,13 +498,13 @@ "vendorHash": null }, "gitlab": { - "hash": "sha256-1TN37PZR2skkmKhRbv1Z1Kv45G9b8WQz9yDK14fs1TI=", + "hash": "sha256-tZJuXYRD6+E6Bhrn+cjeSCRAePgj/g+E8YTStwjZiSM=", "homepage": "https://registry.terraform.io/providers/gitlabhq/gitlab", "owner": "gitlabhq", "repo": "terraform-provider-gitlab", - "rev": "v17.10.0", + "rev": "v17.11.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-1KTU8nMYUfC+LJHFeIpK6m4RUPWvSHNSXGVJgcnsVl8=" + "vendorHash": "sha256-3URc3A1kkcVQ/riB2/THuIEiCq9MrifxgRL73cjsbDA=" }, "google": { "hash": "sha256-GuwIiAyZwa66Vl6dIKdmzHYhWdNrfISy3YKLJQva92U=", From 698f7ad610902e992c18c38f4ba802164266f38b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 07:28:26 +0000 Subject: [PATCH 078/210] lf: 34 -> 35 --- pkgs/by-name/lf/lf/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/lf/lf/package.nix b/pkgs/by-name/lf/lf/package.nix index 2109b49807d3..10c678e7604d 100644 --- a/pkgs/by-name/lf/lf/package.nix +++ b/pkgs/by-name/lf/lf/package.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "lf"; - version = "34"; + version = "35"; src = fetchFromGitHub { owner = "gokcehan"; repo = "lf"; rev = "r${version}"; - hash = "sha256-LUlNwzTusp3Deg01K0HOtR5VXI6Ujnb1Dq6p88gFxAU="; + hash = "sha256-0ZyIbEKiQ9l30gqHlpW7l/6/TzqVRvnKk9c2FiQ6E6Y="; }; - vendorHash = "sha256-CwsHhFVdC+OCv0LWEahJYu33fE0/isNlHKG3rtEw0Ic="; + vendorHash = "sha256-QPsIZ4TRfsYt/bLLQ+1D2X4H+ol3gU8biJIktUv8DYQ="; nativeBuildInputs = [ installShellFiles ]; From c6f113ede2cf69df0a464d05ccd7adbf1b20d8ca Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 07:34:46 +0000 Subject: [PATCH 079/210] kyverno: 1.13.4 -> 1.14.0 --- pkgs/by-name/ky/kyverno/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ky/kyverno/package.nix b/pkgs/by-name/ky/kyverno/package.nix index d11556754e3b..52df9871b85d 100644 --- a/pkgs/by-name/ky/kyverno/package.nix +++ b/pkgs/by-name/ky/kyverno/package.nix @@ -9,13 +9,13 @@ buildGoModule rec { pname = "kyverno"; - version = "1.13.4"; + version = "1.14.0"; src = fetchFromGitHub { owner = "kyverno"; repo = "kyverno"; rev = "v${version}"; - hash = "sha256-XkFxgBn4x/2H7j0nZufzmfGltY9ROOjEWqxmQrO7RNw="; + hash = "sha256-8y/2Vf1QPImUUsVMT5B/F8PYadtSoGYZtFtfgdUbt2M="; }; ldflags = [ @@ -26,7 +26,7 @@ buildGoModule rec { "-X github.com/kyverno/kyverno/pkg/version.BuildTime=1970-01-01_00:00:00" ]; - vendorHash = "sha256-cmS3zNeknHhnbZnPrCXBs2N6oA3fM271K0ePL8nERm0="; + vendorHash = "sha256-d4Q2etUHSEbbFnuCvkkJZWxvsnomtUSbDzkMTsFy3yk="; subPackages = [ "cmd/cli/kubectl-kyverno" ]; From 487112cc3c5db56d7482a8b1b7c0163de0f95561 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 11:21:15 +0000 Subject: [PATCH 080/210] opengamepadui: 0.39.0 -> 0.39.2 --- pkgs/by-name/op/opengamepadui/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/op/opengamepadui/package.nix b/pkgs/by-name/op/opengamepadui/package.nix index 807b5ad92204..00ed2c02d1a6 100644 --- a/pkgs/by-name/op/opengamepadui/package.nix +++ b/pkgs/by-name/op/opengamepadui/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "opengamepadui"; - version = "0.39.0"; + version = "0.39.2"; buildType = if withDebug then "debug" else "release"; @@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "ShadowBlip"; repo = "OpenGamepadUI"; tag = "v${finalAttrs.version}"; - hash = "sha256-eBHDJVbPL4Lw1TDOOJT4rzvSb+F7J6EdsLbL4co69nk="; + hash = "sha256-r7AR3PAYgTS/KvL44xkAr/iJM19grbmjwjZyzOSFXMc="; }; cargoDeps = rustPlatform.fetchCargoVendor { From f33e138a459e637239bc7a6c6b0127c176b1ab99 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 11:34:16 +0000 Subject: [PATCH 081/210] python312Packages.panel: 1.6.2 -> 1.6.3 --- pkgs/development/python-modules/panel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/panel/default.nix b/pkgs/development/python-modules/panel/default.nix index 611144859664..b432381aee8c 100644 --- a/pkgs/development/python-modules/panel/default.nix +++ b/pkgs/development/python-modules/panel/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "panel"; - version = "1.6.2"; + version = "1.6.3"; format = "wheel"; @@ -25,7 +25,7 @@ buildPythonPackage rec { # tries to fetch even more artifacts src = fetchPypi { inherit pname version format; - hash = "sha256-RvqL6HSWV8bEK1Y/03NoqPrihfD/VOvjOwCwjhXG3qE="; + hash = "sha256-zNKgWHqzgr1VuOoJlwbzG2Sq2saXuKQZI9Oxi57WGNY="; dist = "py3"; python = "py3"; }; From e9cb1f2ce074bf26748663b0c80909be28ddf28a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 12:36:55 +0000 Subject: [PATCH 082/210] lalrpop: 0.20.2 -> 0.22.1 --- pkgs/by-name/la/lalrpop/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/la/lalrpop/package.nix b/pkgs/by-name/la/lalrpop/package.nix index 35c040efdf89..210049c4da98 100644 --- a/pkgs/by-name/la/lalrpop/package.nix +++ b/pkgs/by-name/la/lalrpop/package.nix @@ -8,17 +8,17 @@ rustPlatform.buildRustPackage rec { pname = "lalrpop"; - version = "0.20.2"; + version = "0.22.1"; src = fetchFromGitHub { owner = "lalrpop"; repo = "lalrpop"; rev = version; - hash = "sha256-cFwBck+bdOjhF6rQQj03MOO+XCsrII5c4Xvhsw12ETA="; + hash = "sha256-RvKJ3PKOKJbY0/WBpUwbau9LyCzb/peD73Ey9stECeg="; }; useFetchCargoVendor = true; - cargoHash = "sha256-c0xota0APLm/xQSH2Orn0PgCKuhUVhXEtzNge/GeYo0="; + cargoHash = "sha256-KqG8AqYK1sslZyqCMKesxuyy9+IenXW56edoxygKj4k="; patches = [ (replaceVars ./use-correct-binary-path-in-tests.patch { From 8714916cb67716d8f35b507c1de0cdd53fce208a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 12:39:38 +0000 Subject: [PATCH 083/210] publii: 0.46.4 -> 0.46.5 --- pkgs/by-name/pu/publii/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pu/publii/package.nix b/pkgs/by-name/pu/publii/package.nix index 8f8355569f05..b90481040830 100644 --- a/pkgs/by-name/pu/publii/package.nix +++ b/pkgs/by-name/pu/publii/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { pname = "publii"; - version = "0.46.4"; + version = "0.46.5"; src = fetchurl { url = "https://getpublii.com/download/Publii-${version}.deb"; - hash = "sha256-06bPVsfWHASQFzsXr5QONZq27UaeXbMfqyuuKmTcjNE="; + hash = "sha256-VymAHQNv3N7Mqe8wiUfYawi1BooczLFClxuwaW8NetA="; }; dontConfigure = true; From 01f739daad682f5db12562a150e080e065744793 Mon Sep 17 00:00:00 2001 From: emaryn Date: Fri, 25 Apr 2025 20:49:57 +0800 Subject: [PATCH 084/210] gg-jj: 0.23.0 -> 0.27.0 Diff: https://github.com/gulbanana/gg/compare/refs/tags/v0.23.0...refs/tags/v0.27.0 Changelog: https://github.com/gulbanana/gg/blob/refs/tags/v0.27.0/CHANGELOG.md --- pkgs/by-name/gg/gg-jj/native-tls.patch | 351 ------------------------- pkgs/by-name/gg/gg-jj/package.nix | 55 ++-- 2 files changed, 18 insertions(+), 388 deletions(-) delete mode 100644 pkgs/by-name/gg/gg-jj/native-tls.patch diff --git a/pkgs/by-name/gg/gg-jj/native-tls.patch b/pkgs/by-name/gg/gg-jj/native-tls.patch deleted file mode 100644 index bcbd79fc812b..000000000000 --- a/pkgs/by-name/gg/gg-jj/native-tls.patch +++ /dev/null @@ -1,351 +0,0 @@ -diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock -index 37a1a2d..45640a1 100644 ---- a/src-tauri/Cargo.lock -+++ b/src-tauri/Cargo.lock -@@ -778,9 +778,9 @@ dependencies = [ - "bitflags 2.6.0", - "block", - "cocoa-foundation", -- "core-foundation", -+ "core-foundation 0.10.0", - "core-graphics", -- "foreign-types", -+ "foreign-types 0.5.0", - "libc", - "objc", - ] -@@ -793,7 +793,7 @@ checksum = "e14045fb83be07b5acf1c0884b2180461635b433455fa35d1cd6f17f1450679d" - dependencies = [ - "bitflags 2.6.0", - "block", -- "core-foundation", -+ "core-foundation 0.10.0", - "core-graphics-types", - "libc", - "objc", -@@ -873,6 +873,16 @@ dependencies = [ - "version_check", - ] - -+[[package]] -+name = "core-foundation" -+version = "0.9.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" -+dependencies = [ -+ "core-foundation-sys", -+ "libc", -+] -+ - [[package]] - name = "core-foundation" - version = "0.10.0" -@@ -896,9 +906,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" - dependencies = [ - "bitflags 2.6.0", -- "core-foundation", -+ "core-foundation 0.10.0", - "core-graphics-types", -- "foreign-types", -+ "foreign-types 0.5.0", - "libc", - ] - -@@ -909,7 +919,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" - dependencies = [ - "bitflags 2.6.0", -- "core-foundation", -+ "core-foundation 0.10.0", - "libc", - ] - -@@ -1435,6 +1445,15 @@ version = "0.1.3" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2" - -+[[package]] -+name = "foreign-types" -+version = "0.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" -+dependencies = [ -+ "foreign-types-shared 0.1.1", -+] -+ - [[package]] - name = "foreign-types" - version = "0.5.0" -@@ -1442,7 +1461,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" - dependencies = [ - "foreign-types-macros", -- "foreign-types-shared", -+ "foreign-types-shared 0.3.1", - ] - - [[package]] -@@ -1456,6 +1475,12 @@ dependencies = [ - "syn 2.0.87", - ] - -+[[package]] -+name = "foreign-types-shared" -+version = "0.1.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -+ - [[package]] - name = "foreign-types-shared" - version = "0.3.1" -@@ -2779,6 +2804,22 @@ dependencies = [ - "want", - ] - -+[[package]] -+name = "hyper-tls" -+version = "0.6.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" -+dependencies = [ -+ "bytes", -+ "http-body-util", -+ "hyper", -+ "hyper-util", -+ "native-tls", -+ "tokio", -+ "tokio-native-tls", -+ "tower-service", -+] -+ - [[package]] - name = "hyper-util" - version = "0.1.10" -@@ -3418,9 +3459,9 @@ dependencies = [ - - [[package]] - name = "libc" --version = "0.2.163" -+version = "0.2.164" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "1fdaeca4cf44ed4ac623e86ef41f056e848dbeab7ec043ecb7326ba300b36fd0" -+checksum = "433bfe06b8c75da9b2e3fbea6e5329ff87748f0b144ef75306e674c3f6f7c13f" - - [[package]] - name = "libgit2-sys" -@@ -3453,7 +3494,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" - dependencies = [ - "cfg-if", -- "windows-targets 0.52.6", -+ "windows-targets 0.48.5", - ] - - [[package]] -@@ -3688,6 +3729,23 @@ dependencies = [ - "windows-sys 0.59.0", - ] - -+[[package]] -+name = "native-tls" -+version = "0.2.13" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0dab59f8e050d5df8e4dd87d9206fb6f65a483e20ac9fda365ade4fab353196c" -+dependencies = [ -+ "libc", -+ "log", -+ "openssl", -+ "openssl-probe", -+ "openssl-sys", -+ "schannel", -+ "security-framework", -+ "security-framework-sys", -+ "tempfile", -+] -+ - [[package]] - name = "ndk" - version = "0.9.0" -@@ -4065,6 +4123,32 @@ dependencies = [ - "pathdiff", - ] - -+[[package]] -+name = "openssl" -+version = "0.10.69" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f5e534d133a060a3c19daec1eb3e98ec6f4685978834f2dbadfe2ec215bab64e" -+dependencies = [ -+ "bitflags 2.6.0", -+ "cfg-if", -+ "foreign-types 0.3.2", -+ "libc", -+ "once_cell", -+ "openssl-macros", -+ "openssl-sys", -+] -+ -+[[package]] -+name = "openssl-macros" -+version = "0.1.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn 2.0.87", -+] -+ - [[package]] - name = "openssl-probe" - version = "0.1.5" -@@ -4854,19 +4938,23 @@ dependencies = [ - "http-body", - "http-body-util", - "hyper", -+ "hyper-tls", - "hyper-util", - "ipnet", - "js-sys", - "log", - "mime", -+ "native-tls", - "once_cell", - "percent-encoding", - "pin-project-lite", -+ "rustls-pemfile", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper", - "tokio", -+ "tokio-native-tls", - "tokio-util 0.7.12", - "tower-service", - "url", -@@ -5000,6 +5088,21 @@ dependencies = [ - "windows-sys 0.52.0", - ] - -+[[package]] -+name = "rustls-pemfile" -+version = "2.2.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" -+dependencies = [ -+ "rustls-pki-types", -+] -+ -+[[package]] -+name = "rustls-pki-types" -+version = "1.10.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" -+ - [[package]] - name = "rustversion" - version = "1.0.18" -@@ -5027,6 +5130,15 @@ version = "0.1.4" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "088c5d71572124929ea7549a8ce98e1a6fd33d0a38367b09027b382e67c033db" - -+[[package]] -+name = "schannel" -+version = "0.1.26" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1" -+dependencies = [ -+ "windows-sys 0.59.0", -+] -+ - [[package]] - name = "schemars" - version = "0.8.21" -@@ -5089,6 +5201,29 @@ version = "4.1.0" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" - -+[[package]] -+name = "security-framework" -+version = "2.11.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" -+dependencies = [ -+ "bitflags 2.6.0", -+ "core-foundation 0.9.4", -+ "core-foundation-sys", -+ "libc", -+ "security-framework-sys", -+] -+ -+[[package]] -+name = "security-framework-sys" -+version = "2.12.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fa39c7303dc58b5543c94d22c1766b0d31f2ee58306363ea622b10bbc075eaa2" -+dependencies = [ -+ "core-foundation-sys", -+ "libc", -+] -+ - [[package]] - name = "selectors" - version = "0.22.0" -@@ -5436,7 +5571,7 @@ dependencies = [ - "bytemuck", - "cfg_aliases", - "core-graphics", -- "foreign-types", -+ "foreign-types 0.5.0", - "js-sys", - "log", - "objc2", -@@ -5631,7 +5766,7 @@ checksum = "6682a07cf5bab0b8a2bd20d0a542917ab928b5edb75ebd4eda6b05cbaab872da" - dependencies = [ - "bitflags 2.6.0", - "cocoa", -- "core-foundation", -+ "core-foundation 0.10.0", - "core-graphics", - "crossbeam-channel", - "dispatch", -@@ -6208,6 +6343,16 @@ dependencies = [ - "syn 2.0.87", - ] - -+[[package]] -+name = "tokio-native-tls" -+version = "0.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" -+dependencies = [ -+ "native-tls", -+ "tokio", -+] -+ - [[package]] - name = "tokio-util" - version = "0.6.10" -@@ -7006,7 +7151,7 @@ version = "0.1.9" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" - dependencies = [ -- "windows-sys 0.59.0", -+ "windows-sys 0.48.0", - ] - - [[package]] -diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml -index 550b0cf..9b711a4 100644 ---- a/src-tauri/Cargo.toml -+++ b/src-tauri/Cargo.toml -@@ -14,7 +14,7 @@ zip = "0.6" - assert_matches = "1.5" - - [dependencies] --tauri = { version = "2.0.0", features = [] } -+tauri = { version = "2.0.0", features = ["native-tls"] } - tauri-codegen = "2.0.0" - tauri-macros = "2.0.0" - tauri-plugin = "2.0.0" diff --git a/pkgs/by-name/gg/gg-jj/package.nix b/pkgs/by-name/gg/gg-jj/package.nix index ff2c5240a4bc..adf3bf1f7f76 100644 --- a/pkgs/by-name/gg/gg-jj/package.nix +++ b/pkgs/by-name/gg/gg-jj/package.nix @@ -1,71 +1,52 @@ { lib, stdenv, - rustPlatform, fetchFromGitHub, fetchNpmDeps, - yq, - cargo-tauri, - cargo, - rustc, nodejs, npmHooks, pkg-config, wrapGAppsHook3, - openssl, webkitgtk_4_1, - versionCheckHook, nix-update-script, }: -stdenv.mkDerivation (finalAttrs: { + +rustPlatform.buildRustPackage (finalAttrs: { pname = "gg"; - version = "0.23.0"; + version = "0.27.0"; src = fetchFromGitHub { owner = "gulbanana"; repo = "gg"; tag = "v${finalAttrs.version}"; - hash = "sha256-iQxPJgMxBtyindkNdQkehwPf7ZgWCI09PToqs2y1Hfw="; + hash = "sha256-vmzALX1x7VfdnwN05bCwbnTL+HfFVyNiKFoT74tFuu8="; }; - patches = [ ./native-tls.patch ]; cargoRoot = "src-tauri"; + buildAndTestSubdir = "src-tauri"; - # FIXME: Switch back to cargoHash when https://github.com/NixOS/nixpkgs/issues/356811 is fixed - cargoDeps = rustPlatform.fetchCargoVendor { - inherit (finalAttrs) - pname - version - src - patches - ; - # Tries to apply patches inside cargoRoot. - prePatch = "pushd .."; - postPatch = "popd"; - sourceRoot = "${finalAttrs.src.name}/${finalAttrs.cargoRoot}"; - hash = "sha256-zEYU5l57VxVKKhoGfa77kT05vwoLyAu9eyt7C9dhAGM="; - }; + cargoHash = "sha256-esStQ55+T4uLbHbg7P7hqS6kIpXIMxouRSFkTo6dvAU="; npmDeps = fetchNpmDeps { inherit (finalAttrs) pname version src; - hash = "sha256-SMz1ohPSF5tvf2d3is4PXhnjHG9hHuS5NYmHbe46HaU="; + hash = "sha256-yFDGH33maCndH4vgyMfNg0+c5jCOeoIAWUJgAPHXwsM="; }; - nativeBuildInputs = [ - cargo-tauri.hook - rustPlatform.cargoSetupHook - cargo - rustc - nodejs - npmHooks.npmConfigHook - pkg-config - wrapGAppsHook3 - ]; + nativeBuildInputs = + [ + cargo-tauri.hook + nodejs + npmHooks.npmConfigHook + pkg-config + ] + ++ lib.optionals stdenv.hostPlatform.isLinux [ + wrapGAppsHook3 + ]; buildInputs = [ openssl ] @@ -89,7 +70,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { description = "GUI for the version control system Jujutsu"; homepage = "https://github.com/gulbanana/gg"; - changelog = "https://github.com/gulbanana/gg/blob/${finalAttrs.src.rev}/CHANGELOG.md"; + changelog = "https://github.com/gulbanana/gg/blob/v${finalAttrs.version}/CHANGELOG.md"; license = with lib.licenses; [ asl20 ]; inherit (cargo-tauri.hook.meta) platforms; maintainers = with lib.maintainers; [ pluiedev ]; From 9bcc30fbad132a2bd2fde8f7112b8204fb3eb13e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 13:05:32 +0000 Subject: [PATCH 085/210] signalbackup-tools: 20250417 -> 20250424-4 --- pkgs/by-name/si/signalbackup-tools/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/si/signalbackup-tools/package.nix b/pkgs/by-name/si/signalbackup-tools/package.nix index 3605e063abc8..6797d858aa6b 100644 --- a/pkgs/by-name/si/signalbackup-tools/package.nix +++ b/pkgs/by-name/si/signalbackup-tools/package.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "signalbackup-tools"; - version = "20250417"; + version = "20250424-4"; src = fetchFromGitHub { owner = "bepaald"; repo = "signalbackup-tools"; rev = version; - hash = "sha256-uGQ6VXFj8SyWRumwihXTwY/LL1PI4q2Vbnoopwbwyho="; + hash = "sha256-39deFHhrfWNxHQHbBt2hlW5hPeizSWNcZS27kmHS8nI="; }; nativeBuildInputs = From 140fea1ad6881dc14fce817f521d3b74675e4946 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 13:07:29 +0000 Subject: [PATCH 086/210] simpleitk: 2.4.1 -> 2.5.0 --- pkgs/development/libraries/simpleitk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/simpleitk/default.nix b/pkgs/development/libraries/simpleitk/default.nix index 370208f046e3..09aa2077dbc0 100644 --- a/pkgs/development/libraries/simpleitk/default.nix +++ b/pkgs/development/libraries/simpleitk/default.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "simpleitk"; - version = "2.4.1"; + version = "2.5.0"; src = fetchFromGitHub { owner = "SimpleITK"; repo = "SimpleITK"; tag = "v${finalAttrs.version}"; - hash = "sha256-aVYsb7i/DNnJ8327eO2MZ5LWz8moqE7rf2DIp4M3Q+M="; + hash = "sha256-9PidduOe5AW9faeA28mNPf1GRVFdTjEryo/mJq+T6dk="; }; nativeBuildInputs = [ From b929655e0796b550bca0b766b416e2cbe94bb578 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 13:21:02 +0000 Subject: [PATCH 087/210] orchis-theme: 2024-11-03 -> 2025-04-25 --- pkgs/by-name/or/orchis-theme/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/or/orchis-theme/package.nix b/pkgs/by-name/or/orchis-theme/package.nix index fcb63679336b..af74db27205d 100644 --- a/pkgs/by-name/or/orchis-theme/package.nix +++ b/pkgs/by-name/or/orchis-theme/package.nix @@ -38,13 +38,13 @@ lib.checkListOfEnum "${pname}: theme tweaks" validTweaks tweaks stdenvNoCC.mkDerivation rec { inherit pname; - version = "2024-11-03"; + version = "2025-04-25"; src = fetchFromGitHub { repo = "Orchis-theme"; owner = "vinceliuice"; rev = version; - hash = "sha256-K8FiS1AiFMhVaz2Jbr0pudQJGqpwBkQ/4NZdZACtM9Q="; + hash = "sha256-+2/CsgJ+rdDpCp+r5B/zys3PtFgtnu+ohTEUOtJNd1Y="; }; nativeBuildInputs = [ From 9e4cab3af22f7fffa9fbad68715ec8881f604a7d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 13:30:28 +0000 Subject: [PATCH 088/210] ligolo-ng: 0.7.5 -> 0.8 --- pkgs/by-name/li/ligolo-ng/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/li/ligolo-ng/package.nix b/pkgs/by-name/li/ligolo-ng/package.nix index bac3bc61b1d2..aef7204e97c6 100644 --- a/pkgs/by-name/li/ligolo-ng/package.nix +++ b/pkgs/by-name/li/ligolo-ng/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "ligolo-ng"; - version = "0.7.5"; + version = "0.8"; src = fetchFromGitHub { owner = "tnpitsecurity"; repo = "ligolo-ng"; tag = "v${version}"; - hash = "sha256-BU3gBUNOTjpAANkvzPcgsZrly+TkbG86LHtZf93uxeY="; + hash = "sha256-9+n6d9bY9VJiMsgvFNhbdkZ5S1Eo0YxyakuOocMvCdE="; }; - vendorHash = "sha256-v6lHY3s1TJh8u4JaTa9kcCj+1pl01zckvTVeLk8TZ+w="; + vendorHash = "sha256-1K9T7jbQxrnf9j/oa8UvZFatYOiDnJCrMc0DoFGo73U="; postConfigure = '' export CGO_ENABLED=0 From 1230be052e14f8fa8f0204d0bc61987d2ef94042 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 13:44:05 +0000 Subject: [PATCH 089/210] intel-cmt-cat: 24.05 -> 25.04 --- pkgs/by-name/in/intel-cmt-cat/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/in/intel-cmt-cat/package.nix b/pkgs/by-name/in/intel-cmt-cat/package.nix index 0b356aa6d4c7..57132ef7633a 100644 --- a/pkgs/by-name/in/intel-cmt-cat/package.nix +++ b/pkgs/by-name/in/intel-cmt-cat/package.nix @@ -5,14 +5,14 @@ }: stdenv.mkDerivation rec { - version = "24.05"; + version = "25.04"; pname = "intel-cmt-cat"; src = fetchFromGitHub { owner = "intel"; repo = "intel-cmt-cat"; rev = "v${version}"; - sha256 = "sha256-e4sbQNpUCZaZDhLLRVDXHXsEelZaZIdc8n3ksUnAkKQ="; + sha256 = "sha256-Sbxfa9F+TSv2A8nilrB0PD312v1qN++k8Pezd7wd0PA="; }; enableParallelBuilding = true; From a1dbc34bc04d065aab4ed92e8c59607210e31c00 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 15:21:52 +0000 Subject: [PATCH 090/210] louvre: 2.16.2-1 -> 2.16.3-1 --- pkgs/by-name/lo/louvre/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/lo/louvre/package.nix b/pkgs/by-name/lo/louvre/package.nix index 2a874f42a756..41304b7038da 100644 --- a/pkgs/by-name/lo/louvre/package.nix +++ b/pkgs/by-name/lo/louvre/package.nix @@ -24,13 +24,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "louvre"; - version = "2.16.2-1"; + version = "2.16.3-1"; src = fetchFromGitHub { owner = "CuarzoSoftware"; repo = "Louvre"; rev = "v${finalAttrs.version}"; - hash = "sha256-E6g9BqP8KniCBfYC1xOMqLA5RiAacsslgWAkvTop3CA="; + hash = "sha256-ZdV/KvYnPN4IKU6kbjDhCgcC3TdWqZbNJzDt39ZQ2x8="; }; sourceRoot = "${finalAttrs.src.name}/src"; From 19fc87cdbb7f367bca1b707694216112dcd95336 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Fri, 25 Apr 2025 18:42:51 +0300 Subject: [PATCH 091/210] musescore: 4.5.1 -> 4.5.2 Diff: https://github.com/musescore/MuseScore/compare/v4.5.1...v4.5.2 --- pkgs/applications/audio/musescore/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/musescore/default.nix b/pkgs/applications/audio/musescore/default.nix index ff57eb3f4799..315ed5932fb5 100644 --- a/pkgs/applications/audio/musescore/default.nix +++ b/pkgs/applications/audio/musescore/default.nix @@ -36,13 +36,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "musescore"; - version = "4.5.1"; + version = "4.5.2"; src = fetchFromGitHub { owner = "musescore"; repo = "MuseScore"; rev = "v${finalAttrs.version}"; - sha256 = "sha256-ha3rBILekycHiPdcaPNsbvlF289NzFs9srP3unOuJRg="; + sha256 = "sha256-9jafh9zyf+tuC+WU6nQIMBVm+Gqqcig8jS2R1h/YnIo="; }; # Backport + additional patch to fix build on Qt 6.9 From ca556879afefde4ca1d7a22bafa3eb16d44f632d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 15:55:53 +0000 Subject: [PATCH 092/210] opengrok: 1.13.28 -> 1.13.29 --- pkgs/by-name/op/opengrok/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/op/opengrok/package.nix b/pkgs/by-name/op/opengrok/package.nix index 42ba35995c16..72ccffaed262 100644 --- a/pkgs/by-name/op/opengrok/package.nix +++ b/pkgs/by-name/op/opengrok/package.nix @@ -8,12 +8,12 @@ stdenv.mkDerivation rec { pname = "opengrok"; - version = "1.13.28"; + version = "1.13.29"; # binary distribution src = fetchurl { url = "https://github.com/oracle/opengrok/releases/download/${version}/${pname}-${version}.tar.gz"; - hash = "sha256-WomA61x6/IeEZdsQJwIzmaPZdYttGLJ+Yw36gOnAUK4="; + hash = "sha256-u0Mlk8u/8eVS5c7HgAG1Uwdsq9qLDW7oPzq5le+qh/U="; }; nativeBuildInputs = [ makeWrapper ]; From 716e4f329a8df0b187d40c6015be99efcbb35f75 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 25 Apr 2025 18:35:25 +0200 Subject: [PATCH 093/210] python313Packages.publicsuffixlist: 1.0.2.20250423 -> 1.0.2.20250425 Changelog: https://github.com/ko-zu/psl/blob/v1.0.2.20250425-gha/CHANGES.md --- pkgs/development/python-modules/publicsuffixlist/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/publicsuffixlist/default.nix b/pkgs/development/python-modules/publicsuffixlist/default.nix index cdda7f1ddfe6..de0dfb60c4af 100644 --- a/pkgs/development/python-modules/publicsuffixlist/default.nix +++ b/pkgs/development/python-modules/publicsuffixlist/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "publicsuffixlist"; - version = "1.0.2.20250423"; + version = "1.0.2.20250425"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-AV337Hvto1AYFcMS3uE/N8AtmNBYbsdnlAHIlc7xazc="; + hash = "sha256-kiz2MnUnrBLG6pNUtH73783gLUrOKYn4m3a12tFbOn4="; }; build-system = [ setuptools ]; From 02555cd0bd66f9606d4e336fdae05e3c14f36d19 Mon Sep 17 00:00:00 2001 From: Scott Edlund Date: Thu, 24 Apr 2025 22:07:40 +0800 Subject: [PATCH 094/210] nixos/systemd: clarify what enableStrictShellChecks checks the specifics of this option are in the release notes, but bring them into the documentation. --- nixos/lib/systemd-unit-options.nix | 18 +++++++++++++++--- nixos/modules/system/boot/systemd.nix | 27 ++++++++++++++++++++++++++- 2 files changed, 41 insertions(+), 4 deletions(-) diff --git a/nixos/lib/systemd-unit-options.nix b/nixos/lib/systemd-unit-options.nix index 6c93bfddfa52..27d2e5d18391 100644 --- a/nixos/lib/systemd-unit-options.nix +++ b/nixos/lib/systemd-unit-options.nix @@ -398,9 +398,21 @@ rec { enableStrictShellChecks = mkOption { type = types.bool; - description = "Enable running shellcheck on the generated scripts for this unit."; - # The default gets set in systemd-lib.nix because we don't have access to - # the full NixOS config here. + description = '' + Enable running `shellcheck` on the generated scripts for this unit. + + When enabled, scripts generated by the unit will be checked with + `shellcheck` and any errors or warnings will cause the build to + fail. + + This affects all scripts that have been created through the + `script`, `reload`, `preStart`, `postStart`, `preStop` and + `postStop` options for systemd services. This does not affect + command lines passed directly to `ExecStart`, `ExecReload`, + `ExecStartPre`, `ExecStartPost`, `ExecStop` or `ExecStopPost`. + ''; + # The default gets set in systemd-lib.nix because we don't have + # access to the full NixOS config here. defaultText = literalExpression "config.systemd.enableStrictShellChecks"; }; diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index 24c317bcc46d..7f998c1de49c 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -226,7 +226,32 @@ in package = mkPackageOption pkgs "systemd" { }; enableStrictShellChecks = mkEnableOption "" // { - description = "Whether to run shellcheck on the generated scripts for systemd units."; + description = '' + Whether to run `shellcheck` on the generated scripts for systemd + units. + + When enabled, all systemd scripts generated by NixOS will be checked + with `shellcheck` and any errors or warnings will cause the build to + fail. + + This affects all scripts that have been created through the `script`, + `reload`, `preStart`, `postStart`, `preStop` and `postStop` options for + systemd services. This does not affect command lines passed directly + to `ExecStart`, `ExecReload`, `ExecStartPre`, `ExecStartPost`, + `ExecStop` or `ExecStopPost`. + + It therefore also does not affect systemd units that are coming from + packages and that are not defined through the NixOS config. This option + is disabled by default, and although some services have already been + fixed, it is still likely that you will encounter build failures when + enabling this. + + We encourage people to enable this option when they are willing and + able to submit fixes for potential build failures to Nixpkgs. The + option can also be enabled or disabled for individual services using + the `enableStrictShellChecks` option on the service itself, which will + take precedence over the global setting. + ''; }; units = mkOption { From cef3411ad9a1f427a8e493ed9d60ee2325473826 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 18:50:28 +0000 Subject: [PATCH 095/210] trillian: 1.7.1 -> 1.7.2 --- pkgs/by-name/tr/trillian/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/tr/trillian/package.nix b/pkgs/by-name/tr/trillian/package.nix index 0f65953ea0e0..f1e957f8bfad 100644 --- a/pkgs/by-name/tr/trillian/package.nix +++ b/pkgs/by-name/tr/trillian/package.nix @@ -6,14 +6,14 @@ buildGoModule rec { pname = "trillian"; - version = "1.7.1"; - vendorHash = "sha256-muPKjhUbpBJBMq8abcgTzq8/bjGXVPLoYHqQJKv8a1k="; + version = "1.7.2"; + vendorHash = "sha256-5SG9CVugHIkDcpjGuZb5wekYzCj5fKyC/YxzmeptkR4="; src = fetchFromGitHub { owner = "google"; repo = pname; rev = "v${version}"; - sha256 = "sha256-TOJqBfYVubwgDF/9i6lwmCLj6x0utzz0O7QJ5SqshCA="; + sha256 = "sha256-DFSG67MMpGzTlvQlW9DttLqqDkS8d8wMkeOlLQuElxU="; }; subPackages = [ From fe6af564ee616a344f433b90ea4c23acac72ccd4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 20:24:55 +0000 Subject: [PATCH 096/210] aws-lc: 1.49.1 -> 1.50.0 --- pkgs/by-name/aw/aws-lc/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/aw/aws-lc/package.nix b/pkgs/by-name/aw/aws-lc/package.nix index b5e4223fa727..85ffce52b6fc 100644 --- a/pkgs/by-name/aw/aws-lc/package.nix +++ b/pkgs/by-name/aw/aws-lc/package.nix @@ -14,13 +14,13 @@ let in awsStdenv.mkDerivation (finalAttrs: { pname = "aws-lc"; - version = "1.49.1"; + version = "1.50.0"; src = fetchFromGitHub { owner = "aws"; repo = "aws-lc"; rev = "v${finalAttrs.version}"; - hash = "sha256-gnYtzXHaS7QLcVmIcQsQDy6wNesQJ2ruE9W32HqiA5A="; + hash = "sha256-aYill04Fs/mJFCmzP/tlwUcPRHJz6R9knQWKGEOMwfQ="; }; outputs = [ From 0018aeee147c7017a6c56e17a349f64bb9defcb3 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Fri, 18 Apr 2025 13:24:38 -0700 Subject: [PATCH 097/210] calaos_installer: modernize --- pkgs/misc/calaos/installer/default.nix | 29 +++++++++++++------------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/pkgs/misc/calaos/installer/default.nix b/pkgs/misc/calaos/installer/default.nix index 311b87f6b429..1af9b86e5178 100644 --- a/pkgs/misc/calaos/installer/default.nix +++ b/pkgs/misc/calaos/installer/default.nix @@ -1,31 +1,29 @@ { - mkDerivation, lib, stdenv, fetchFromGitHub, - qmake, - qttools, - qtbase, + libsForQt5, }: -mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "calaos_installer"; version = "3.11"; src = fetchFromGitHub { owner = "calaos"; repo = "calaos_installer"; - rev = "v${version}"; - sha256 = "sha256-e/f58VtGmKukdv4rIrGljXhA9d/xUycM5V6I1FT5qeY="; + tag = "v${finalAttrs.version}"; + hash = "sha256-e/f58VtGmKukdv4rIrGljXhA9d/xUycM5V6I1FT5qeY="; }; - nativeBuildInputs = [ + buildInputs = [ libsForQt5.qtbase ]; + nativeBuildInputs = with libsForQt5; [ qmake + wrapQtAppsHook qttools ]; - buildInputs = [ qtbase ]; - qmakeFlags = [ "REVISION=${version}" ]; + qmakeFlags = [ "REVISION=${finalAttrs.version}" ]; installPhase = if stdenv.hostPlatform.isDarwin then @@ -39,12 +37,13 @@ mkDerivation rec { cp -a calaos_installer $out/bin ''; - meta = with lib; { + meta = { description = "Calaos Installer, a tool to create calaos configuration"; mainProgram = "calaos_installer"; homepage = "https://www.calaos.fr/"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ tiramiseb ]; + downloadPage = "https://github.com/calaos/calaos_installer/"; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ tiramiseb ]; }; -} +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5e79fba3425e..26401dd6cc34 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18330,7 +18330,7 @@ with pkgs; brgenml1lpr = pkgsi686Linux.callPackage ../misc/cups/drivers/brgenml1lpr { }; - calaos_installer = libsForQt5.callPackage ../misc/calaos/installer { }; + calaos_installer = callPackage ../misc/calaos/installer { }; clinfo = callPackage ../tools/system/clinfo { inherit (darwin.apple_sdk.frameworks) OpenCL; From c6f88a97d5ec80e907c339ee755fb6a743dbaa01 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Fri, 18 Apr 2025 14:30:20 -0700 Subject: [PATCH 098/210] calaos_installer: move to by-name --- .../default.nix => by-name/ca/calaos_installer/package.nix} | 0 pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 2 deletions(-) rename pkgs/{misc/calaos/installer/default.nix => by-name/ca/calaos_installer/package.nix} (100%) diff --git a/pkgs/misc/calaos/installer/default.nix b/pkgs/by-name/ca/calaos_installer/package.nix similarity index 100% rename from pkgs/misc/calaos/installer/default.nix rename to pkgs/by-name/ca/calaos_installer/package.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 26401dd6cc34..6b8af98137c6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18330,8 +18330,6 @@ with pkgs; brgenml1lpr = pkgsi686Linux.callPackage ../misc/cups/drivers/brgenml1lpr { }; - calaos_installer = callPackage ../misc/calaos/installer { }; - clinfo = callPackage ../tools/system/clinfo { inherit (darwin.apple_sdk.frameworks) OpenCL; }; From 38722279e1b66d27129015561028a96ca8b96bdc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 20:44:50 +0000 Subject: [PATCH 099/210] azure-cli-extensions.vm-repair: 2.1.1 -> 2.1.2 --- pkgs/by-name/az/azure-cli/extensions-manual.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-manual.nix b/pkgs/by-name/az/azure-cli/extensions-manual.nix index a7af4d93965d..6e3d8c1a60de 100644 --- a/pkgs/by-name/az/azure-cli/extensions-manual.nix +++ b/pkgs/by-name/az/azure-cli/extensions-manual.nix @@ -140,9 +140,9 @@ vm-repair = mkAzExtension rec { pname = "vm-repair"; - version = "2.1.1"; + version = "2.1.2"; url = "https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-${version}-py2.py3-none-any.whl"; - hash = "sha256-3Pgwppp4IssNYhJ+USQNwMEp91XdZDwNlnNWzVWrHFM="; + hash = "sha256-DOuH7BG4WrhP7SQH3GInFh7DHT0qN3JhSG76EXmNn24="; description = "Support for repairing Azure Virtual Machines"; propagatedBuildInputs = with python3Packages; [ opencensus ]; meta.maintainers = with lib.maintainers; [ ]; From 1c1c955a62984c620ccaa5dfb72169c1ce92b81b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 21:23:55 +0000 Subject: [PATCH 100/210] testkube: 2.1.141 -> 2.1.147 --- pkgs/by-name/te/testkube/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/te/testkube/package.nix b/pkgs/by-name/te/testkube/package.nix index f8f0dd960bf1..c6798b866c68 100644 --- a/pkgs/by-name/te/testkube/package.nix +++ b/pkgs/by-name/te/testkube/package.nix @@ -5,16 +5,16 @@ }: buildGoModule rec { pname = "testkube"; - version = "2.1.141"; + version = "2.1.147"; src = fetchFromGitHub { owner = "kubeshop"; repo = "testkube"; rev = "v${version}"; - hash = "sha256-oiy0PrGwFuY3C8esP7wbwwnHdXmR+xM6oGJIzGYFBU4="; + hash = "sha256-0DjpADPB1NwUJfDEX46+l7xMq/oyUwrA31fTiIkPm2I="; }; - vendorHash = "sha256-lS6RLag9HZSu08Bv0p6qgp2wnsnJpJEUn6P4eeAUXWo="; + vendorHash = "sha256-A/DrmX5lZMlFcBnswetNvW9UfGd5BIh7S31FDAkgqwA="; ldflags = [ "-X main.version=${version}" From 0c3112537c9a82e99d1e437ed37a69d09d6bc69f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 22:12:35 +0000 Subject: [PATCH 101/210] sscg: 3.0.6 -> 3.0.7 --- pkgs/by-name/ss/sscg/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ss/sscg/package.nix b/pkgs/by-name/ss/sscg/package.nix index e0a6044e78b6..510c6044c0de 100644 --- a/pkgs/by-name/ss/sscg/package.nix +++ b/pkgs/by-name/ss/sscg/package.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "sscg"; - version = "3.0.6"; + version = "3.0.7"; src = fetchFromGitHub { owner = "sgallagher"; repo = "sscg"; tag = "sscg-${finalAttrs.version}"; - hash = "sha256-BT9qytO9M3uymsHak4FtBapYLSNJcF96/8LxqXXiwxE="; + hash = "sha256-e9/ruYBn206J0snQSo5uS9mvWmNh9AaZdZshSADEd4M="; }; nativeBuildInputs = [ From 4a1a40ed5e1d629ec53e3fd452689b29570f6533 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 22:46:55 +0000 Subject: [PATCH 102/210] supabase-cli: 2.22.1 -> 2.22.8 --- pkgs/by-name/su/supabase-cli/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/su/supabase-cli/package.nix b/pkgs/by-name/su/supabase-cli/package.nix index 52ece4fd9b3c..7b2d928735e8 100644 --- a/pkgs/by-name/su/supabase-cli/package.nix +++ b/pkgs/by-name/su/supabase-cli/package.nix @@ -10,16 +10,16 @@ buildGoModule rec { pname = "supabase-cli"; - version = "2.22.1"; + version = "2.22.8"; src = fetchFromGitHub { owner = "supabase"; repo = "cli"; rev = "v${version}"; - hash = "sha256-ixmEMO/+t53v9FbEkMigQ7eV4Q4awceJYwwswOBgJkw="; + hash = "sha256-faW/1oBbYRq+8vQbipYXNTVIftXkKM3uGPbNNPeZivY="; }; - vendorHash = "sha256-0zaxdwBAbOAa3cnvm2qzXJ03he2a87Hz9LgbK1a+TEM="; + vendorHash = "sha256-gh8AXUxnDU8trXCJN0aFZ/U4RadzOjDXV9tYCAFRbA0="; ldflags = [ "-s" From cda80637833387e0e2d410839253009654bf6564 Mon Sep 17 00:00:00 2001 From: arthsmn Date: Fri, 25 Apr 2025 20:18:55 -0300 Subject: [PATCH 103/210] termbench-pro: unstable-2024-10-05 -> unstable-2025-01-01 --- pkgs/by-name/te/termbench-pro/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/te/termbench-pro/package.nix b/pkgs/by-name/te/termbench-pro/package.nix index b5139a1af97e..31a22abc6064 100644 --- a/pkgs/by-name/te/termbench-pro/package.nix +++ b/pkgs/by-name/te/termbench-pro/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation { pname = "termbench-pro"; - version = "unstable-2024-10-05"; + version = "unstable-2025-01-01"; src = fetchFromGitHub { owner = "contour-terminal"; repo = "termbench-pro"; - rev = "22a0c42f78dc2e522eb1089bf9976a9ff0ecdcad"; - hash = "sha256-Yyvlu/yx/yGc9Ci9Pn098YfTdywLZEaowQZeLM4WGjQ"; + rev = "3a39a4ad592047dee3038d8bfcce84215ac55032"; + hash = "sha256-EvTHBPWLGm2FxEVOwMIXH4UW/15rbXPnxEnjMtSg4YM="; }; # don't fetch glaze from CMakeLists.txt From dd61b5ba3a83d63b81ce5bfd8dd7b2a0a7f4040e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 25 Apr 2025 23:31:00 +0000 Subject: [PATCH 104/210] reindeer: 2025.04.14.00 -> 2025.04.21.00 --- pkgs/by-name/re/reindeer/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/re/reindeer/package.nix b/pkgs/by-name/re/reindeer/package.nix index 1ee71e17b23c..e131371041ed 100644 --- a/pkgs/by-name/re/reindeer/package.nix +++ b/pkgs/by-name/re/reindeer/package.nix @@ -9,17 +9,17 @@ rustPlatform.buildRustPackage rec { pname = "reindeer"; - version = "2025.04.14.00"; + version = "2025.04.21.00"; src = fetchFromGitHub { owner = "facebookincubator"; repo = "reindeer"; tag = "v${version}"; - hash = "sha256-Htmc2z2umh9RKRvrOSGUXqk/Clzw+1+SB8EOGLJZKqM="; + hash = "sha256-BtfOMN39O3zaeeqksDfja5lbUK9nEyUBarr36Hqi1bM="; }; useFetchCargoVendor = true; - cargoHash = "sha256-i0TmB+JtJKCS/eQxOb5SIKi8jf1qqygndDdJOmGl66A="; + cargoHash = "sha256-kOKJDLmgDBfZOT2rGe/Eme94xc56kPabN+xZgvw1i60="; nativeBuildInputs = [ pkg-config ]; From d05d6a77e678638dc7ae9d6f5c8784f8f54c25bb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 00:22:55 +0000 Subject: [PATCH 105/210] slumber: 3.1.0 -> 3.1.1 --- pkgs/by-name/sl/slumber/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sl/slumber/package.nix b/pkgs/by-name/sl/slumber/package.nix index 45eae21acf3b..c8fc7133dd19 100644 --- a/pkgs/by-name/sl/slumber/package.nix +++ b/pkgs/by-name/sl/slumber/package.nix @@ -8,17 +8,17 @@ rustPlatform.buildRustPackage rec { pname = "slumber"; - version = "3.1.0"; + version = "3.1.1"; src = fetchFromGitHub { owner = "LucasPickering"; repo = "slumber"; tag = "v${version}"; - hash = "sha256-GFkssVTOohEdczIi4+OV7qKHBPqa2yFZNhAoMAIBZN0="; + hash = "sha256-ilqIqw0N4Xsfw7ntLxoz4Ogn2e3NH8VnqAgowbvfZ+0="; }; useFetchCargoVendor = true; - cargoHash = "sha256-4RDnIWr0Z6FGnUQxh+yk7L/mg/Jw6JROns4DXkYIbuE="; + cargoHash = "sha256-acWEinwYCCtoapFkL6XyASvFX4bqYS/HrKjlaAZabi4="; buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.AppKit ]; From 1a65e64e7cfc668d0237635417f240158a1cb6ec Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 00:35:50 +0000 Subject: [PATCH 106/210] bftpd: 6.2 -> 6.3 --- pkgs/by-name/bf/bftpd/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/bf/bftpd/package.nix b/pkgs/by-name/bf/bftpd/package.nix index f195306c784e..414171b7aa72 100644 --- a/pkgs/by-name/bf/bftpd/package.nix +++ b/pkgs/by-name/bf/bftpd/package.nix @@ -7,11 +7,11 @@ stdenv.mkDerivation rec { pname = "bftpd"; - version = "6.2"; + version = "6.3"; src = fetchurl { url = "mirror://sourceforge/project/${pname}/${pname}/${pname}-${version}/${pname}-${version}.tar.gz"; - sha256 = "sha256-lZGFsUV6LNjkBNUpV9UYedVt1yt1qTBJUorxGt4ApsI="; + sha256 = "sha256-f7XZCSrGwmQqyf5C4xtJ46Q4SDHxbr15rDzcAK1PvB4="; }; # utmp has been replaced by utmpx since Mac OS X 10.6 (Snow Leopard): From dcf1b8f5379163cf5652c07e15d31215a1253556 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 00:39:36 +0000 Subject: [PATCH 107/210] rojo: 7.4.4 -> 7.5.0 --- pkgs/by-name/ro/rojo/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ro/rojo/package.nix b/pkgs/by-name/ro/rojo/package.nix index 20181d00888f..40ad6406465f 100644 --- a/pkgs/by-name/ro/rojo/package.nix +++ b/pkgs/by-name/ro/rojo/package.nix @@ -13,18 +13,18 @@ let in rustPlatform.buildRustPackage rec { pname = "rojo"; - version = "7.4.4"; + version = "7.5.0"; src = fetchFromGitHub { owner = "rojo-rbx"; repo = "rojo"; rev = "v${version}"; - hash = "sha256-5jiqR3gn3X+klcYr1zTEB9omxWwHKQNLKCVXhry1jjY="; + hash = "sha256-aCwQ07z7MhBS4C03npwjQOmfJXwD7trYo/upT3GAkHU="; fetchSubmodules = true; }; useFetchCargoVendor = true; - cargoHash = "sha256-AUtTk98izmFgMK7xpwaObzc+lFB9OjjgdCdXtwTS6JQ="; + cargoHash = "sha256-naItqyJaIxFZuswbrE8RZqMffGy1MaIa0RX9RLOWmyw="; nativeBuildInputs = [ pkg-config From 099298216c77ba18830d50531c98584d94c43a6d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 02:09:31 +0000 Subject: [PATCH 108/210] pspg: 5.8.8 -> 5.8.9 --- pkgs/by-name/ps/pspg/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ps/pspg/package.nix b/pkgs/by-name/ps/pspg/package.nix index fb2addc0c646..2cddd3cc8e41 100644 --- a/pkgs/by-name/ps/pspg/package.nix +++ b/pkgs/by-name/ps/pspg/package.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation rec { pname = "pspg"; - version = "5.8.8"; + version = "5.8.9"; src = fetchFromGitHub { owner = "okbob"; repo = "pspg"; rev = version; - sha256 = "sha256-8Wi8fMEBc1A0foEzwO5Dq6c3yC0pJ9hbzCjjMp+Lapg="; + sha256 = "sha256-DxeAu8Ik3srQhQ4L+9p+brnnJoJnoYWYjBo2AiJN2ZA="; }; nativeBuildInputs = [ From 7dc00b3ab9186f84cd127ef70937810434136664 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 02:38:01 +0000 Subject: [PATCH 109/210] w_scan2: 1.0.16 -> 1.0.17 --- pkgs/by-name/w_/w_scan2/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/w_/w_scan2/package.nix b/pkgs/by-name/w_/w_scan2/package.nix index 0554e20d92b3..663a9d2a1722 100644 --- a/pkgs/by-name/w_/w_scan2/package.nix +++ b/pkgs/by-name/w_/w_scan2/package.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { pname = "w_scan2"; - version = "1.0.16"; + version = "1.0.17"; src = fetchFromGitHub { owner = "stefantalpalaru"; repo = "w_scan2"; rev = version; - hash = "sha256-8yFK2BnlrRBnQhsuy3Dh+oBH8Ainr6mLdRTqOSqY2FA="; + hash = "sha256-2wtH7mb6XfgLHr0vDVTZwoYxpSTM5N8Y/vi0YWN6MUE="; }; meta = { From dc6e97f8d55d33f00580e4f73c7cd846bfbe154b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 04:02:26 +0000 Subject: [PATCH 110/210] python312Packages.eigenpy: 3.10.3 -> 3.11.0 --- pkgs/development/python-modules/eigenpy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/eigenpy/default.nix b/pkgs/development/python-modules/eigenpy/default.nix index 93c882e51644..2bbf0264e321 100644 --- a/pkgs/development/python-modules/eigenpy/default.nix +++ b/pkgs/development/python-modules/eigenpy/default.nix @@ -13,14 +13,14 @@ buildPythonPackage rec { pname = "eigenpy"; - version = "3.10.3"; + version = "3.11.0"; pyproject = false; # Built with cmake src = fetchFromGitHub { owner = "stack-of-tasks"; repo = "eigenpy"; tag = "v${version}"; - hash = "sha256-bO1SwBMEopJTKKLhuLQnoAs1X5RPmnyV7fbb11S2doo="; + hash = "sha256-BCsEW7eXlCnVILaB+1j0rFDuCkJ6Rs2HJMzTqNsMfzs="; }; outputs = [ From f899e4f009ed91f87c3ac35651c8085e3b89fac7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 04:06:16 +0000 Subject: [PATCH 111/210] aaaaxy: 1.6.176 -> 1.6.194 --- pkgs/by-name/aa/aaaaxy/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/aa/aaaaxy/package.nix b/pkgs/by-name/aa/aaaaxy/package.nix index c77a65855dda..de8587f0ef8a 100644 --- a/pkgs/by-name/aa/aaaaxy/package.nix +++ b/pkgs/by-name/aa/aaaaxy/package.nix @@ -22,17 +22,17 @@ buildGoModule rec { pname = "aaaaxy"; - version = "1.6.176"; + version = "1.6.194"; src = fetchFromGitHub { owner = "divVerent"; repo = pname; rev = "v${version}"; - hash = "sha256-LukI+FgM2gtKp2/3ySJ0FT6lTlBYTh400GFC5NK7S8I="; + hash = "sha256-4iL3+GeyOZoZN8IXo0jjSq3hYHKBTpytk8owXMdfACo="; fetchSubmodules = true; }; - vendorHash = "sha256-bw2Zk4vHzVaXdKwYJF+DkfJefxJlZKlFlh5LGcgkZBY="; + vendorHash = "sha256-XBcrs6G3Kq9WsODegy2KxqSp+qwr+NpdLJLa3qmW9kA="; buildInputs = [ alsa-lib From ab9f9e7b07ad27c57492c10ac8eb511ec593cf2c Mon Sep 17 00:00:00 2001 From: Naufal Fikri Date: Sat, 26 Apr 2025 15:09:53 +1000 Subject: [PATCH 112/210] python3Packages.marqo: 3.11.0 -> 3.12.0 --- pkgs/development/python-modules/marqo/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/marqo/default.nix b/pkgs/development/python-modules/marqo/default.nix index eeb794c22fc4..3e9c98a5d5f4 100644 --- a/pkgs/development/python-modules/marqo/default.nix +++ b/pkgs/development/python-modules/marqo/default.nix @@ -13,14 +13,14 @@ buildPythonPackage rec { name = "marqo"; - version = "3.11.0"; + version = "3.12.0"; pyproject = true; src = fetchFromGitHub { owner = "marqo-ai"; repo = "py-marqo"; rev = "refs/tags/${version}"; - hash = "sha256-8BcYJZ7tXkuvtQzopZO9bvLXAJQdd8MnQflVTawTaw0="; + hash = "sha256-phO7aR7kQJHw5qxrpMI5DtOaXlaHMsKfaC3UquyD/Rw="; }; build-system = [ setuptools ]; @@ -61,7 +61,6 @@ buildPythonPackage rec { packaging pydantic requests - ]; pythonRemoveDeps = [ "urllib3" ]; From 3cef3202d89578fc41397be70adc6931554f426e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 05:10:56 +0000 Subject: [PATCH 113/210] broot: 1.46.0 -> 1.46.3 --- pkgs/by-name/br/broot/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/br/broot/package.nix b/pkgs/by-name/br/broot/package.nix index a30c2cbcdec4..4a17c10874ff 100644 --- a/pkgs/by-name/br/broot/package.nix +++ b/pkgs/by-name/br/broot/package.nix @@ -15,17 +15,17 @@ rustPlatform.buildRustPackage rec { pname = "broot"; - version = "1.46.0"; + version = "1.46.3"; src = fetchFromGitHub { owner = "Canop"; repo = "broot"; rev = "v${version}"; - hash = "sha256-m7TG3Bxqp87g9GPijy+daP4nYgCJkTmC95U+DgUcWGM="; + hash = "sha256-MfBlJ7SokBKkAkmBSj4NsE2hKVqYeGN3z/xiq2VK3vU="; }; useFetchCargoVendor = true; - cargoHash = "sha256-elpzGgF9o7iV2YaQFFqQ9jafEuYVPImC808MWWFZ4gw="; + cargoHash = "sha256-QJJxZDRJZkg/A1NjTBj7KpcfO8VUnXXcJT9knguAf/g="; nativeBuildInputs = [ installShellFiles From 261590dff756d36e5a529e0edb589f87d6e86d32 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Apr 2025 08:26:14 +0200 Subject: [PATCH 114/210] python312Packages.mypy-boto3-apprunner: 1.38.0 -> 1.38.2 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index fce5b33c7051..b0942d096c63 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -126,8 +126,8 @@ rec { "sha256-1YzBEenzkvMBprqh6YCp7ccqrwjPSt0j0cVxuXZd8iY="; mypy-boto3-apprunner = - buildMypyBoto3Package "apprunner" "1.38.0" - "sha256-tPT2wYmq50Swr65+CsmlpVM8xfuYmbJpauQahKC5ces="; + buildMypyBoto3Package "apprunner" "1.38.2" + "sha256-GJTIrZNUiUwE1gJ46a5sy/GVwvned9bcGeWMWLraNgU="; mypy-boto3-appstream = buildMypyBoto3Package "appstream" "1.38.0" From 0022852079bd95503be312dc038850a974e3397d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Apr 2025 08:26:15 +0200 Subject: [PATCH 115/210] python312Packages.mypy-boto3-appsync: 1.38.0 -> 1.38.2 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index b0942d096c63..413803cc04c4 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -134,8 +134,8 @@ rec { "sha256-0Ex+gq7lC3J1pxSpDZD6SJhxHnWosedNXMFMHdfG2Pc="; mypy-boto3-appsync = - buildMypyBoto3Package "appsync" "1.38.0" - "sha256-x6BAqHxN0Jc+TBhafSrNmtUy8GmKrJVrQsZSyqLbEkw="; + buildMypyBoto3Package "appsync" "1.38.2" + "sha256-5hCTRhwqD1apJqpV/i2tLX09O6uA9Zn6c+gswBHO5H0="; mypy-boto3-arc-zonal-shift = buildMypyBoto3Package "arc-zonal-shift" "1.38.0" From c31e09ae5e8107899bbbbe2082e8023a67471fdb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Apr 2025 08:26:23 +0200 Subject: [PATCH 116/210] python312Packages.mypy-boto3-codebuild: 1.38.1 -> 1.38.2 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 413803cc04c4..3a447dd79552 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -266,8 +266,8 @@ rec { "sha256-II4WIgBsWK3+CXk/XFzWpmlEXsbBuWt4C3onExl2u0o="; mypy-boto3-codebuild = - buildMypyBoto3Package "codebuild" "1.38.1" - "sha256-ksjuuQGLNtw+9jbc0YieZx9yLBoG/5VYH4Q9ky4zIIw="; + buildMypyBoto3Package "codebuild" "1.38.2" + "sha256-JsdVk9mmYTF0lCLpAsh4gRt9EpxJU0KPRLhAqqB7q0E="; mypy-boto3-codecatalyst = buildMypyBoto3Package "codecatalyst" "1.38.0" From 0d0dd75de9db830ae2d9e03f242beaf67dc8b153 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Apr 2025 08:26:36 +0200 Subject: [PATCH 117/210] python312Packages.mypy-boto3-dynamodb: 1.38.0 -> 1.38.2 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 3a447dd79552..3c9cd36224f7 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -434,8 +434,8 @@ rec { "sha256-GZGTzkx/DzyV2IxrAF/8VM+O0Pl4U+hXiXpbWCT+oho="; mypy-boto3-dynamodb = - buildMypyBoto3Package "dynamodb" "1.38.0" - "sha256-CSEHAyZp6hVaYAHDwNluJXauTP7Kj1RWbw7F4QNzQCg="; + buildMypyBoto3Package "dynamodb" "1.38.2" + "sha256-1/Vnt7O2a01EPFFSGVph0of+xC+mC8ethuPFVEdBgK4="; mypy-boto3-dynamodbstreams = buildMypyBoto3Package "dynamodbstreams" "1.38.0" From 7f80b2c55b7a1f0d288242983bfd4ccea85cbfdc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Apr 2025 08:26:39 +0200 Subject: [PATCH 118/210] python312Packages.mypy-boto3-ecs: 1.38.1 -> 1.38.3 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 3c9cd36224f7..66dc535310a3 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -462,8 +462,8 @@ rec { "sha256-qJ22ZyzB+8OVRjRklxWYKJlA9WZg542CccUWmdx4p+s="; mypy-boto3-ecs = - buildMypyBoto3Package "ecs" "1.38.1" - "sha256-YXg0m0bBhNqd3zXkE/yE2Q1VgCF2VdAIuqLff4+39SA="; + buildMypyBoto3Package "ecs" "1.38.3" + "sha256-Jzft9wDE6k5v0nCCtVg48eyg545/+kRWwSl44GdwtLE="; mypy-boto3-efs = buildMypyBoto3Package "efs" "1.38.0" From 1c4131b9513900110b73a23ac9a97e26a4d80f59 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Apr 2025 08:27:18 +0200 Subject: [PATCH 119/210] python312Packages.mypy-boto3-rds: 1.38.0 -> 1.38.2 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 66dc535310a3..cb5c167b2f4e 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -1086,8 +1086,8 @@ rec { "sha256-ZgecmO3dz66i2COSXzBjyUCtTkGGi9gnvb/HNNEq1AE="; mypy-boto3-rds = - buildMypyBoto3Package "rds" "1.38.0" - "sha256-wBXC44MgXIDaifqw/8BYKUkKToTF0ooWwLdTOy61z/U="; + buildMypyBoto3Package "rds" "1.38.2" + "sha256-vfZRgJZfcaPrd3hwb4exziyfE0DPOrE28ZA6YAdOScw="; mypy-boto3-rds-data = buildMypyBoto3Package "rds-data" "1.38.0" From aea95dc69c8c46eb2b914247f617557e9e322d80 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Apr 2025 08:27:43 +0200 Subject: [PATCH 120/210] python313Packages.botocore-stubs: 1.38.1 -> 1.38.3 --- pkgs/development/python-modules/botocore-stubs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/botocore-stubs/default.nix b/pkgs/development/python-modules/botocore-stubs/default.nix index 70c43426d92a..2843733dd102 100644 --- a/pkgs/development/python-modules/botocore-stubs/default.nix +++ b/pkgs/development/python-modules/botocore-stubs/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "botocore-stubs"; - version = "1.38.1"; + version = "1.38.3"; pyproject = true; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "botocore_stubs"; inherit version; - hash = "sha256-4vxGO1mB62a2qAmwhoI4PfEN+utwPMu94fEEJGWawhk="; + hash = "sha256-gMeuJTZuL9OclTkGwBHQOsCA41aC/QzbZP6BBW4b+ak="; }; nativeBuildInputs = [ setuptools ]; From 4f0b5fbdbc7c3c3e532c0921cf63149c69271d8b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Apr 2025 08:27:46 +0200 Subject: [PATCH 121/210] python313Packages.boto3-stubs: 1.38.1 -> 1.38.3 --- pkgs/development/python-modules/boto3-stubs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/boto3-stubs/default.nix b/pkgs/development/python-modules/boto3-stubs/default.nix index ac76c4814e8a..90a655b487a7 100644 --- a/pkgs/development/python-modules/boto3-stubs/default.nix +++ b/pkgs/development/python-modules/boto3-stubs/default.nix @@ -359,7 +359,7 @@ buildPythonPackage rec { pname = "boto3-stubs"; - version = "1.38.1"; + version = "1.38.3"; pyproject = true; disabled = pythonOlder "3.7"; @@ -367,7 +367,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "boto3_stubs"; inherit version; - hash = "sha256-JbA/29oojBV2++AC7PQAiOn11s3wUY3oqEp0Z6qJgJI="; + hash = "sha256-5AZibeja9TeYRng1WtDjLYOIZcTqPSIyaJZNTm+0RTQ="; }; build-system = [ setuptools ]; From b4c845757e04ed223ebe01eccee01af7ebc01235 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Apr 2025 09:00:55 +0200 Subject: [PATCH 122/210] python313Packages.pynws: 2.0.0 -> 2.1.0 Diff: https://github.com/MatthewFlamm/pynws/compare/refs/tags/v2.0.0...refs/tags/v2.1.0 Changelog: https://github.com/MatthewFlamm/pynws/releases/tag/v2.1.0 --- pkgs/development/python-modules/pynws/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pynws/default.nix b/pkgs/development/python-modules/pynws/default.nix index 537a4944ba1c..919724232384 100644 --- a/pkgs/development/python-modules/pynws/default.nix +++ b/pkgs/development/python-modules/pynws/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "pynws"; - version = "2.0.0"; + version = "2.1.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "MatthewFlamm"; repo = "pynws"; tag = "v${version}"; - hash = "sha256-eAXIlX/K7Cpq+aiPHiRGqhtSHQDtbHONYP0AjRW8JjY="; + hash = "sha256-OKq3IdBr/YDWsmyJLHNoffVp2Q0RV+rZU5rm1Ba0FoY="; }; build-system = [ From 0085240dd7f0e5a42200ea8e46edb7700cafb1aa Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Apr 2025 09:01:42 +0200 Subject: [PATCH 123/210] python313Packages.pysmartthings: 3.0.4 -> 3.0.5 Diff: https://github.com/andrewsayre/pysmartthings/compare/refs/tags/v3.0.4...refs/tags/v3.0.5 Changelog: https://github.com/andrewsayre/pysmartthings/releases/tag/v3.0.5 --- pkgs/development/python-modules/pysmartthings/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pysmartthings/default.nix b/pkgs/development/python-modules/pysmartthings/default.nix index 6319ed8bfa2f..2795559003e0 100644 --- a/pkgs/development/python-modules/pysmartthings/default.nix +++ b/pkgs/development/python-modules/pysmartthings/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "pysmartthings"; - version = "3.0.4"; + version = "3.0.5"; pyproject = true; disabled = pythonOlder "3.12"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "andrewsayre"; repo = "pysmartthings"; tag = "v${version}"; - hash = "sha256-FM1c6SRwTUHfbTmk7Z+hsyvpdPp+uyeqnviI6VzPGT4="; + hash = "sha256-JQ3RFdaUaggk4qo1aDFw/tLvPWeLKIetOHY/p0GKCrU="; }; build-system = [ poetry-core ]; From ae037ce66226e02449fe961844bc4fc3aac9b090 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Apr 2025 09:12:32 +0200 Subject: [PATCH 124/210] cnspec: 11.51.1 -> 11.51.2 Diff: https://github.com/mondoohq/cnspec/compare/refs/tags/v11.51.1...refs/tags/v11.51.2 Changelog: https://github.com/mondoohq/cnspec/releases/tag/v11.51.2 --- pkgs/tools/security/cnspec/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/cnspec/default.nix b/pkgs/tools/security/cnspec/default.nix index 429a6bf58969..6c7b87dc1906 100644 --- a/pkgs/tools/security/cnspec/default.nix +++ b/pkgs/tools/security/cnspec/default.nix @@ -6,18 +6,18 @@ buildGoModule rec { pname = "cnspec"; - version = "11.51.1"; + version = "11.51.2"; src = fetchFromGitHub { owner = "mondoohq"; repo = "cnspec"; tag = "v${version}"; - hash = "sha256-iTS8+ZmJWHRA6VSwei9mIWPqZHshb8JniXSXl+hGyPg="; + hash = "sha256-KNjjQ9LbDm5lmyx+ET+VqU89uvJwIimCgWGuyc0bJTw="; }; proxyVendor = true; - vendorHash = "sha256-TbIXNPMygNXqX2TCbkZOhXpdoz/cjZD5uoItgmYf7wk="; + vendorHash = "sha256-me1NVsVzFXVMbXkeZeuxIoLEWpWXeRKeVJHx1wn8EQ4="; subPackages = [ "apps/cnspec" ]; From 3eb5836634772851e73690e2092327cfb714f8e5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 07:44:46 +0000 Subject: [PATCH 125/210] firefox-beta-bin-unwrapped: 138.0b8 -> 138.0b9 --- .../browsers/firefox-bin/beta_sources.nix | 1238 ++++++++--------- 1 file changed, 619 insertions(+), 619 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix index 9451eb669b5e..9d62b61c7923 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix @@ -1,1859 +1,1859 @@ { - version = "138.0b8"; + version = "138.0b9"; sources = [ { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ach/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ach/firefox-138.0b9.tar.xz"; locale = "ach"; arch = "linux-x86_64"; - sha256 = "80989a964e38730d2fe4319235806764520b5a0650192799ae13bfe441940279"; + sha256 = "b3ffb3ddcd92974bb68092b0f192e709f8c6ea4dd04a53cdd01ae3e1265e4ce1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/af/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/af/firefox-138.0b9.tar.xz"; locale = "af"; arch = "linux-x86_64"; - sha256 = "421a4d6cc45c4d64c95ad7783362350cb64aadf66a44895550247d1ec7f3ece0"; + sha256 = "873329379f2ebc5423e088baad11bc8e9e1dd9f86ad28dbaf9bff78e85a9cd9e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/an/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/an/firefox-138.0b9.tar.xz"; locale = "an"; arch = "linux-x86_64"; - sha256 = "797657def82cfd6ee70084af60d5f09ad1f66d6325b9e08ffb88ecdccd62ec02"; + sha256 = "6b664107a382ad84cfb4bf88f614f7a551daed5f09e52125cf4b9963288af052"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ar/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ar/firefox-138.0b9.tar.xz"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "919ad1d11421fcae4b05f2a0eec8724d8bce40865e4efaf71bb362451acd748c"; + sha256 = "2157430396d0e622b5bb3432b6c2da4d98355f07bcab57f768ffa4f961c7422c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ast/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ast/firefox-138.0b9.tar.xz"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "147c7bb0b40dbf5653447861f16b8515fe39ae7f1c13533cfbb08526be9c1dfd"; + sha256 = "5f4041933b0788a94982d5abe82c2bd320562c42e3bf5e9ee11439ac31bd0657"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/az/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/az/firefox-138.0b9.tar.xz"; locale = "az"; arch = "linux-x86_64"; - sha256 = "37dd7aeb3c2f88a451f5e623bc2575bd71d529dcc31f5a4c072e0ae25010ca2d"; + sha256 = "b60de8fe2b27f47cec99b0fda40355b6dd0aba9f13af9b0369ea6c0149426491"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/be/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/be/firefox-138.0b9.tar.xz"; locale = "be"; arch = "linux-x86_64"; - sha256 = "099eab295d39cb2044774a097040eb5d4ae9595f26ae76421a48f741e37a4b97"; + sha256 = "6472c3c7ea0316d54a10fc48c8648446c270c97b3605b3e84517e556a42fbafb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/bg/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/bg/firefox-138.0b9.tar.xz"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "22be921854a33169b7d8ae8f72187f4928c8d02d52a0db626f8d25ea79f6ba0a"; + sha256 = "a5c59d142b5d09047f1a9bca0a6f5b02d64a1a78768ad7d2845dcb52c2e108d6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/bn/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/bn/firefox-138.0b9.tar.xz"; locale = "bn"; arch = "linux-x86_64"; - sha256 = "8c33ec8119293d8351159e8ca1741f6a4a06a858373dc41b02a340017fe5af21"; + sha256 = "1645b8c44d52a7fe9f06de75877c845cd5e48e1cfe72323b76d9d14c274a91fb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/br/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/br/firefox-138.0b9.tar.xz"; locale = "br"; arch = "linux-x86_64"; - sha256 = "6816dc30f54105995cc29f28ab75abfb7b9b14ecbe963f0fa493e3f845c86dc2"; + sha256 = "c22c1d557970a63cbe6f215b9432755514db1d491379ba948a5f5b03c4cfcbdd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/bs/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/bs/firefox-138.0b9.tar.xz"; locale = "bs"; arch = "linux-x86_64"; - sha256 = "259dd175006d8eb98b62bf3d4126f790e57d7b05c15fc3eeba3badf3eebacf24"; + sha256 = "56040544746128cbb94a5064266c366b6e15d1d4e7c4ca83e146a911cc0f4a2f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ca-valencia/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ca-valencia/firefox-138.0b9.tar.xz"; locale = "ca-valencia"; arch = "linux-x86_64"; - sha256 = "92f7e70f2f9a552dd558ff3c3f4d6633624b373d0d74dff1c5fb40e90418a48d"; + sha256 = "05ff5e1862b32b8cd1f298bc7cb33b10fcc23e96c9fdf9d0c6a6bbeda0555710"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ca/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ca/firefox-138.0b9.tar.xz"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "f61026c82d71b9925a3573bdd6c1e9e6f7de8868d07944544c9854a8929c8d01"; + sha256 = "168cd1cf9c6d44a579d0d6aac0ec94e70264346c6d0a7d1b27c794454c5917c0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/cak/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/cak/firefox-138.0b9.tar.xz"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "d90f8af5129110899a818224eac03e34690ffc21df1ec1258c7d3f919ed976c1"; + sha256 = "052649cd769e1cb1c39fd9ec17d936402890af702f1e727744e16ecae0bdc1e3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/cs/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/cs/firefox-138.0b9.tar.xz"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "866c297ac37839400ef3eb13ddc616d35b376b64c19be83faf093d8b4104d5e0"; + sha256 = "7f216ca4ce4914abd5c1bea28a9e70e73053a6ab3f4e88954f5c6f57dd13aa6e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/cy/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/cy/firefox-138.0b9.tar.xz"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "631eef205844faa2b305cfb0b5294cb8c480e9338c6c069b48ac7ba482388d60"; + sha256 = "7797275f345510fd867ef8f70f26df1352f2a96b8cccd0e05a8335013f81a33a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/da/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/da/firefox-138.0b9.tar.xz"; locale = "da"; arch = "linux-x86_64"; - sha256 = "2cffffd9edafdd60f7c2c2a38d2cf9da14d91b6c1315e82273f58a2487914e06"; + sha256 = "b38d4e85485e147ade0ac5b7fab531f04853923bedab7a5cb749985ac3a60ea4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/de/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/de/firefox-138.0b9.tar.xz"; locale = "de"; arch = "linux-x86_64"; - sha256 = "1a8a7c232c4611108a47afcb98d433e9fbd4dcbeae84cc7263931b619c54b85a"; + sha256 = "1a537b14a9182b0544d36c1bccf6b7e3036d50112f2502b36e42ea6de963e55c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/dsb/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/dsb/firefox-138.0b9.tar.xz"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "1ed273febd64e31eb2ea76513b968cad099a2aa8c3e93005fff60ff6835254a4"; + sha256 = "41299aef70f687ea7d6311ce2c5c00fbabac1b7b2303dab693168ec677977fdf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/el/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/el/firefox-138.0b9.tar.xz"; locale = "el"; arch = "linux-x86_64"; - sha256 = "53e5a38a785b5ec57c7d5cc72cf0cc63971d618804e908e36734b4cd848dd780"; + sha256 = "5f0aad046a2b534f08eab6d15a8e8646f6ecbdb6384916feec72b23e56f17d59"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/en-CA/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/en-CA/firefox-138.0b9.tar.xz"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "58bd81c3b7df16bd8674749b9fcdce124a580203013df4904d5e6c22328939ca"; + sha256 = "02d1ea886eac8dbe58d8797c8a9be6910bc8940dbc67b4dc99077f64cff73e8f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/en-GB/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/en-GB/firefox-138.0b9.tar.xz"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "79f98e187a8506cb41e54538b932e835615dfe244f1e9b33d6c8b695e109627d"; + sha256 = "d0e216f4e50b266e407bfdd7017711459cf5c50507a1750f9fc3d366dbd0ef0b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/en-US/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/en-US/firefox-138.0b9.tar.xz"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "1201eebc10e1a6d8e02ab9daae3bea5795ae9e6f9cd289f7244557fbd10c2fc6"; + sha256 = "ca4f673d6abd3b2b4adc971097057664ad1a097ffd67b99257e08ea50ad5fed5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/eo/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/eo/firefox-138.0b9.tar.xz"; locale = "eo"; arch = "linux-x86_64"; - sha256 = "65107fb2691ce2f54805d544968ebc50a19fa627264ced0ff22392b13ce547ad"; + sha256 = "3403de04ae3603a88748a290b50dbae659e03dbeaf2b5d53dea22b6192c2b141"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/es-AR/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/es-AR/firefox-138.0b9.tar.xz"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "8eeeb37caa5ac429b5814b0a242f3515e09a9064f38f31d64a7f19b5654fe0e7"; + sha256 = "2d7908dc8106b20c98edd6853acee8c9227a0c4c9cf7dae885f7c3ecb8f84f8e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/es-CL/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/es-CL/firefox-138.0b9.tar.xz"; locale = "es-CL"; arch = "linux-x86_64"; - sha256 = "625d302661d8ebd31d23c64b84a305d458312244c817dfdf5cd571afab6510d8"; + sha256 = "90b98d20b4b59ce0b5267ef629fa902ffb80d3f7f0d16497a4c669cd2504b7fa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/es-ES/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/es-ES/firefox-138.0b9.tar.xz"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "4daff44ef46d32046c729f029f9b0ea9d86ea501bd17ac45ba9c0c0e4c718453"; + sha256 = "26bcf7dac7ddb3d91a657414c6773eca8a4f7188dd2a53a55b01bec1922e3356"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/es-MX/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/es-MX/firefox-138.0b9.tar.xz"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "38f282b0386287a7a2b6729b07d2c22b4961d948983bf650de88b8d794a00ad9"; + sha256 = "a2c1b2dfa990ac22dca8d2e84a44edd1d7f5c7364a5c923cbfcf71f60020ca67"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/et/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/et/firefox-138.0b9.tar.xz"; locale = "et"; arch = "linux-x86_64"; - sha256 = "74bed5f9d6316740b4bccbee3089e83500280df3d0656cf5a9699c7ebb383a8c"; + sha256 = "d5fe2ce37d7d372f9509607016ef06c941dc5a090b260b1745975af377bcbe56"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/eu/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/eu/firefox-138.0b9.tar.xz"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "04113f82f4ff1e9620b3ebf80aeb67671580d5e7a67ae0eac74ff7317e9c74d1"; + sha256 = "b081e24e03eccb7e0c6ce5fd9b692902dee0939d18673378323230680662bbdc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/fa/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/fa/firefox-138.0b9.tar.xz"; locale = "fa"; arch = "linux-x86_64"; - sha256 = "cebcf7d923f02a5d30a4b73f11dd3cac73d64473ae9f525c82e4a15fb8a23470"; + sha256 = "0bb48d3c9d84e5f894bd741d507b4a854b9ad20c3152bfca41e1c4178d6f558d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ff/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ff/firefox-138.0b9.tar.xz"; locale = "ff"; arch = "linux-x86_64"; - sha256 = "8853de176648d95a2407dc77627d433d5f2278c82e7c5f98a461b5a95a8f897f"; + sha256 = "bb17a6d3cfccd4cf08ee169f0b5395c21fd5195f76b4814011743319403392da"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/fi/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/fi/firefox-138.0b9.tar.xz"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "9cd51d0cbd5a4d2f32e7553cab24ea28a44834e5e9e94259980e17b4e32d75d9"; + sha256 = "070758f58f545ad51645f50bff333b3ccbf5743a41ce32da3758b1bd0ade188b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/fr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/fr/firefox-138.0b9.tar.xz"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "e29729ae855e9995e5c2c5548b5af0580851bdc264b93c3e1ced4a29ba5c4813"; + sha256 = "586d5cd79456e96e9303d3fa3061cd53e7400138a36e44dbb1ec36f7af1e727d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/fur/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/fur/firefox-138.0b9.tar.xz"; locale = "fur"; arch = "linux-x86_64"; - sha256 = "008a4410171cd5dc57d71d3970d461a9de88ddf684047240935ed34c436129d6"; + sha256 = "835e029784412037746780450e6cf4b359c55a8424a5449f0df3c40eba480b47"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/fy-NL/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/fy-NL/firefox-138.0b9.tar.xz"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "574252eba950aa2adbaa69e43710d4300efdf609beb574c1348e0fc7320e72e1"; + sha256 = "1e5990cfbbfed896480276c49220a5a01c079fcd67b93a622a6176bd85d2f657"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ga-IE/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ga-IE/firefox-138.0b9.tar.xz"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "ad425b945f93f64a5eeff7fc7299cdb8858341f79704d7d5123121ca3cac907f"; + sha256 = "88d99fbd512d6069f233c54fe8979c14de8e4f80df75b6a3ed25c9ae7bf82eb9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/gd/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/gd/firefox-138.0b9.tar.xz"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "dc4c549e67bca41686cab05a70778d251bec7f04393c2ffdd1839fd2dc5aee6a"; + sha256 = "e709f3a79328849e8eed16c763a99e75ea98301262b7b7e2696d364e9bd09f22"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/gl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/gl/firefox-138.0b9.tar.xz"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "0b257b3fad952202deb5efb8c9c16827cc736bc30294dbb75c8e7b5e3da9d0fd"; + sha256 = "4bb992cc7899db5f287fb308e5cf46e6a0de88ba3f309dfaa7572849bffe3631"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/gn/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/gn/firefox-138.0b9.tar.xz"; locale = "gn"; arch = "linux-x86_64"; - sha256 = "c3bcd3278666a66c14ae86eeca705a89e43bd40121408c52a877188676768ec1"; + sha256 = "394dfc68789fb34a9660cded12d0c068b6bbabf32752df26c5d0ce17054ac15f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/gu-IN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/gu-IN/firefox-138.0b9.tar.xz"; locale = "gu-IN"; arch = "linux-x86_64"; - sha256 = "57f77ad57a0195fffad63fc84204d4d47df35b4c1c207b5ac747743ddc2f68b3"; + sha256 = "3bd178b93097d42a1e1889370f9ebb2e694b838126bae3d3499a1cfd74f76bc4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/he/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/he/firefox-138.0b9.tar.xz"; locale = "he"; arch = "linux-x86_64"; - sha256 = "5ba38e979772b2c37dd95cb8b9e4ab4cb0c07a8e18288b7adaec4b89c2ed738d"; + sha256 = "55eabfc77a302c7c3c563aaaf9e6166dc8ca69bf8ba6cc7d6f4436dbb3bbc618"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/hi-IN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/hi-IN/firefox-138.0b9.tar.xz"; locale = "hi-IN"; arch = "linux-x86_64"; - sha256 = "7322e060be05bbcffab7392b9d937ac17a8d60c3af0bdb43b45a0dcfc182fb94"; + sha256 = "1ce9e995742d6adb6354983e4dfa59a5ae137dd44a0fd4f7d109e1535cf5e16a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/hr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/hr/firefox-138.0b9.tar.xz"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "f4a16125374c9aa466d5213c565e694a4668fa92e875814ac5fb44994685b9d4"; + sha256 = "b443f56294322beeeaa49b1d56b55d583071cebca3f1ebbcad935dade5863dd3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/hsb/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/hsb/firefox-138.0b9.tar.xz"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "ce961cca196da998192b8f24344e34b476a19d5142db800d0fee153efcb77ce6"; + sha256 = "4feac595468c1b186b83acaf4caa350e07467adea1a5072559427cd2a26bc1bc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/hu/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/hu/firefox-138.0b9.tar.xz"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "69ca37e072084ec23eeee0a7ab0243c3b7749f9e6b37ea48f16fb17c626b76b5"; + sha256 = "2ba338240f527f390e0a2b1b4cb87a3c2d2a6c2f3074f202c26d893f06b84227"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/hy-AM/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/hy-AM/firefox-138.0b9.tar.xz"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "3da107e96a56ba4a5ab175571088793610f8b8efe61c4e180173b100d4b305d8"; + sha256 = "340f077ec7ec896d012497227261427a083313ab968a1ddb7ed946e86f1efec8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ia/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ia/firefox-138.0b9.tar.xz"; locale = "ia"; arch = "linux-x86_64"; - sha256 = "32c3042feb9808d33897b2a1b21a6e96d61b0b2b563064d72b2ac4579c401835"; + sha256 = "4799ba81ad1e9dced07bd4455b74614513b9dc0e35278cf5e3314519375abece"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/id/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/id/firefox-138.0b9.tar.xz"; locale = "id"; arch = "linux-x86_64"; - sha256 = "42d9c7eb1328f76f846102fde392123843efc6dce95163b23695485698b28f24"; + sha256 = "1a0b703975abbefaf41b0aa680f7363961f00cbfd976ee0dfc61d859abe2c6a3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/is/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/is/firefox-138.0b9.tar.xz"; locale = "is"; arch = "linux-x86_64"; - sha256 = "17e477d1f96d273bd4c8b51dd6112e9d623c79793acf8c350c3c8d589e23fd57"; + sha256 = "f773b68f7d330150cae95fee13e04bd6ed64acaf492a1765f8e2bcf38e2088a5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/it/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/it/firefox-138.0b9.tar.xz"; locale = "it"; arch = "linux-x86_64"; - sha256 = "97bf236f9dfef9cc366408d65fce9ce7a0d34a80b2b9661211767bdc064c1b1d"; + sha256 = "9d5bd4ed52733d584ae38dfd1ab740524bca0288779936b0e14828fa3010cb97"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ja/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ja/firefox-138.0b9.tar.xz"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "17f0e2326114fe84e29d43862c97d86851eb298fe9b8f63ed256564c5eed0cbb"; + sha256 = "833364c8524891fefee36123c27beef3117e28e807cda7392f8aba58e817a5c0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ka/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ka/firefox-138.0b9.tar.xz"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "49cd63a3d178bee3a16d4621e3636065a6ff2c0e156161cd3c8ae9f946c89982"; + sha256 = "90056e9ec3bd80f1c54c640360334b25a333de3a81622a5acaded9dd09a8f244"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/kab/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/kab/firefox-138.0b9.tar.xz"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "586d36bbf978f3b8a67c969fa6cfb795a1f55e412d20afb881f69b6b4e8a8c43"; + sha256 = "1ff4af65294c6bb720b0d37ca78ce28dec5cf8391fc73e9854ee595f9a214807"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/kk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/kk/firefox-138.0b9.tar.xz"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "67d2d58a7e70cf536b88d4c0f8dde991716a9daafdda837eb3cfd4f2493dd201"; + sha256 = "add96c9ee56fa8c01ab79dfb28bea67ffe4aae659b766802d164d47c821567e7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/km/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/km/firefox-138.0b9.tar.xz"; locale = "km"; arch = "linux-x86_64"; - sha256 = "4d1a054d9ff827415fc330d6d142d51bdabdde327d80d9f0fde43da660a44261"; + sha256 = "a7c05b16e60e878af35441d7fa76bf0f1c3230a12f870ba68926d6366b5c29ec"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/kn/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/kn/firefox-138.0b9.tar.xz"; locale = "kn"; arch = "linux-x86_64"; - sha256 = "89bf39d54a0265e83d1b6b0ae5585b50ecf5e77a07285eb75ea7c5df96e4935e"; + sha256 = "bb3378b00e4587b338edd0a757c6c2b33400ab60cb187ea08d154b78bec8166d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ko/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ko/firefox-138.0b9.tar.xz"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "b53a59317398e513afcfc577fe7680cc0923f0c1b17858d0afc0d35840830808"; + sha256 = "07156a96ff4de2c7caa722acc9054545d7e754ca66071749fc82e5b40b08b753"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/lij/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/lij/firefox-138.0b9.tar.xz"; locale = "lij"; arch = "linux-x86_64"; - sha256 = "e2e0eeafebc9f8a287bee6a8774a0fd31519d573b7c0a61ca9d69db525434656"; + sha256 = "8d42b8110e3d405aeb59662c2893c9683757913787d813e67f7095ed98c41404"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/lt/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/lt/firefox-138.0b9.tar.xz"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "5ac4031cbf7a29ddb99495dc839bcc5a726943f6737e35a899527e93c05b53be"; + sha256 = "9b0f537416a21ba0924ec129cb674f972957800c00ce4da928bdf69b6f54f02a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/lv/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/lv/firefox-138.0b9.tar.xz"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "dd786a35101a5d8145fe45f81f0bb63e26853c4b1683a870a2f6708cc46826c7"; + sha256 = "f52a391a83ef35e9cdb9477a1fd79f02e3bc57efb3c96dce4dd6500588b64b2c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/mk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/mk/firefox-138.0b9.tar.xz"; locale = "mk"; arch = "linux-x86_64"; - sha256 = "7fbceffe26dca9560a41812f9080661a9d95f9447c2d942124280b607c68a90d"; + sha256 = "f795a11e9f59b57c94f2ae68c30de75bce11ae615871c829b4a1b335cc7cfc4d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/mr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/mr/firefox-138.0b9.tar.xz"; locale = "mr"; arch = "linux-x86_64"; - sha256 = "9c01a5c0e09bbc4a2f6e9140daed81459f415e5e95f92111509e71fa00170ab1"; + sha256 = "03a7b2e164c6a6f7d261671382f267667864e67f5f138468a636bc2424f1ab51"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ms/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ms/firefox-138.0b9.tar.xz"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "d38f1953eeba0321b20f089ad10a37644ecc39ec422c3b1ea580432bdc42ba58"; + sha256 = "b58d49b20d7d180b6544f8e0e247e4e03c2dcf116ac7ecfc39bc4bded19df6a9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/my/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/my/firefox-138.0b9.tar.xz"; locale = "my"; arch = "linux-x86_64"; - sha256 = "09d0b529b37c94886fa1665cad9c420d7306865d4df0ef1313129b0c6c41bc32"; + sha256 = "5bff0e7a50047b9adad4ca7bea17367143e8d77c1f837e992bf9a4c886e1e370"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/nb-NO/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/nb-NO/firefox-138.0b9.tar.xz"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "0287b916add04fa8f23178384fe5ff832392cbdbe84116d19600fe4b3571ff8f"; + sha256 = "55f8264e3a2fc66d27a9244b4d44f005df38a6df07ef887a496faf9a403bd5dd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ne-NP/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ne-NP/firefox-138.0b9.tar.xz"; locale = "ne-NP"; arch = "linux-x86_64"; - sha256 = "05dd8ebe1986c76a86c62b870ed6964dfa0b813edc440042138a6908ea174408"; + sha256 = "22f21bdcbdc27e2bc030f04e3af51236a1115d90b9c60f0dbef1c55842dfded6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/nl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/nl/firefox-138.0b9.tar.xz"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "5b4dfb153877e573a9b0b4a81ea07253cb4e2c583b0788ae39527dfcb68ddab8"; + sha256 = "473638a89dd5d60dc516064739d7a1267b3c3c1f0d16ab1a685361eb27c11cbd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/nn-NO/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/nn-NO/firefox-138.0b9.tar.xz"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "a50b32883392a405daa6e7bafc3161fd2d5fbadc183500126b41eb54b4961470"; + sha256 = "3bdb958681516c6bbb38bae154527fac7daf5516ba4141085fa7aa7746ef2d27"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/oc/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/oc/firefox-138.0b9.tar.xz"; locale = "oc"; arch = "linux-x86_64"; - sha256 = "083e6bdcceba2079ceaee7113c6f5a526affe2283820d2e6ad9abeedabe664c7"; + sha256 = "a5fb11472289e634e367b9cf2eeefa642b7acc56836db219a8d8d7e74bcc78a2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/pa-IN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/pa-IN/firefox-138.0b9.tar.xz"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "acdb216ba73dcd18bc05d1e848e241a251dd9dfcf51d7fc07107f8f9275273a3"; + sha256 = "4fb2ed5330fa4fe6cbd63eafc2f4509c4e9e8874a547798ad67ff45c85aa4f72"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/pl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/pl/firefox-138.0b9.tar.xz"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "051a4cc7a27a6f0657930a3bac4feb801034066ac5c1f597eb864d62b8398507"; + sha256 = "99d726eca2197ed9403487f92da9551d2f43ebff80782f6a176556f72d2a3af7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/pt-BR/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/pt-BR/firefox-138.0b9.tar.xz"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "81ad860db9d5195d20697e9c952069cfa823b16335b526ba5594de341cf94b97"; + sha256 = "3d87b053809abc2cc7e4bb89d449952f4d6ddd08335bc9a7336b4fb97783149e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/pt-PT/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/pt-PT/firefox-138.0b9.tar.xz"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "767c02235a8c5f053ea686ab52bd4ae5e89185958aaca42474ea6f8aff361c5f"; + sha256 = "595b743edb3704645c6ff28ffe3a0a657d8ee8150e2c8c2f0cf9b8498049a1d3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/rm/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/rm/firefox-138.0b9.tar.xz"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "266505f3dfd3587721d8c9aa70015c319f92bb6292d6a3a2af9903193add23f5"; + sha256 = "f61220acc62f3d02113f8f05cb480340aa0e409ed15a9cc132f527ead602d748"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ro/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ro/firefox-138.0b9.tar.xz"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "1e973a8e4d22ecb6c99d0017080ef376d1c755c4aed1db4c17f3d5ba937ef32b"; + sha256 = "b9f36eebe2b1ef701234191aac9af5a9a1095e51efcd6657e39385e9310820bc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ru/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ru/firefox-138.0b9.tar.xz"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "54ee7d43166ea9728d16d42f9afa9f1ef2ee9f77f7dc39396724563f5045f57f"; + sha256 = "4d16a70498e872c802fa8a131a4efde2fde2a6517a2fcebaddc9fe9b155f86e1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/sat/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/sat/firefox-138.0b9.tar.xz"; locale = "sat"; arch = "linux-x86_64"; - sha256 = "6c6dc76fe09ac48a86697547a11226412591183cc25c955a49be86095ce099ac"; + sha256 = "3bbc7f387ab8433be069dac9ef7f54ac04a29953291e554c77c3f0df8f701285"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/sc/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/sc/firefox-138.0b9.tar.xz"; locale = "sc"; arch = "linux-x86_64"; - sha256 = "ad776ef072469ec87f37f10e0a6f3b0ed94dd0a0c33bc630675009a86a933a3c"; + sha256 = "7d91a6dbd6532344b9283a77443ec67613f56d1dc0655b923a2f416d9ef3d861"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/sco/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/sco/firefox-138.0b9.tar.xz"; locale = "sco"; arch = "linux-x86_64"; - sha256 = "0e5fc72f533778248e9b2364ee00452840828e9a6f22a77a63d3f853037f5b49"; + sha256 = "5ded3b7312c290de1688443e29a215ab88c5b2df07afda9009aeb525b05d3e9d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/si/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/si/firefox-138.0b9.tar.xz"; locale = "si"; arch = "linux-x86_64"; - sha256 = "bf243cae6fe9b3da2f3efa3acd3e4390e15fcfff26795770e658aa62fa841a14"; + sha256 = "4bb65aced228724c99efdf333e7187e135c363de2724911a51483ae16af1d211"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/sk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/sk/firefox-138.0b9.tar.xz"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "25809b89943527a092655f77259302b848cded4135ea84ae43a85cf52618a0d2"; + sha256 = "6fe12385a2ccbbaccc0f3cd7af00b214a7cc62358979d8a323b341bba0c0fe9d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/skr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/skr/firefox-138.0b9.tar.xz"; locale = "skr"; arch = "linux-x86_64"; - sha256 = "1866ef50dc4b0122078825ed2f540b537a807300795eeb92b363d00fd288e76b"; + sha256 = "d6281da91df61ad271b3728fa537853afb23ac1d5b9c5f197daee9d0f69ddb83"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/sl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/sl/firefox-138.0b9.tar.xz"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "d99bc7d841864846359fb7953e2bc8768dd70d10f5f2e96e2620b0d3dbed9be7"; + sha256 = "1fd528f21c3428a8354e0441968002845a3191741aa4d273863345316a0edf58"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/son/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/son/firefox-138.0b9.tar.xz"; locale = "son"; arch = "linux-x86_64"; - sha256 = "b6e3a9a889c54656c986b8062cc959641c746fb5b72d99fc3a6f706448612124"; + sha256 = "c09191f749e15748de1d64c5258271bef58922fd52ad73e6a2958f4af22840c4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/sq/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/sq/firefox-138.0b9.tar.xz"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "722e657909aa48eb3d4795e609e6fad435aecaaaf0fd43c29125aa8355d6b342"; + sha256 = "cbb55d0e073e06531aaad1ae2237e18c8e7e89e2f564f4405e64b6bbe5001c87"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/sr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/sr/firefox-138.0b9.tar.xz"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "54006212032d6aeb187ec1ae5682e08e17161bb1c246b9631b08261d915cdb3c"; + sha256 = "7a4ea65224574e81385b60f5eb960d3c9252427d7602727483441204e96c4f8d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/sv-SE/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/sv-SE/firefox-138.0b9.tar.xz"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "85eef0439aff665442f12900c55eb6c86b11f5e31c92120b252da90e9ac09853"; + sha256 = "e014bb87ed0bd09f514a2d89a58ab3d0e3c94c10a86a0c6cf391732e186fe39f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/szl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/szl/firefox-138.0b9.tar.xz"; locale = "szl"; arch = "linux-x86_64"; - sha256 = "28695dc87161eb34244659579d67cc908a4bafe4b88e6c6a8d01a74826e57cb4"; + sha256 = "0097c9696d4c7cac646360afe6c0620e4378fecec285f8e8514ecd1391393076"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ta/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ta/firefox-138.0b9.tar.xz"; locale = "ta"; arch = "linux-x86_64"; - sha256 = "ec03c79225cdae737171d402885725e6ea2a46d7b2a88169f2a81f93f09f27d5"; + sha256 = "1072f19ee7f6c0b0a9ce927907f891bc0a4aaa61e8d72f355ba455a6c81ac12b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/te/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/te/firefox-138.0b9.tar.xz"; locale = "te"; arch = "linux-x86_64"; - sha256 = "bcff0f09f256a8ca561a98be6d38a2d8e4b8f3077fdca1ddcc8b8ef1225b3a36"; + sha256 = "c49a4e9ca7a52a524cd5a6e8e90124e964cae0529f9a08a449349939cd4d3a94"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/tg/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/tg/firefox-138.0b9.tar.xz"; locale = "tg"; arch = "linux-x86_64"; - sha256 = "b14b42e6792b234146921471a420c2a8533ef8281d85fc21d482838aeab73b27"; + sha256 = "07b0eac74d886c8e9b4f3d40bd9013895dd968e8e0dbf84062137427e5f4041a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/th/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/th/firefox-138.0b9.tar.xz"; locale = "th"; arch = "linux-x86_64"; - sha256 = "ee6a01b836c079eda1ca4c98949491860153dfe0a4a28183df163ab2b2737bb6"; + sha256 = "c372a1bbb565c0f7f1b47506d72cb549bdfc74f6fc8a38227255b08dc6bce84f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/tl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/tl/firefox-138.0b9.tar.xz"; locale = "tl"; arch = "linux-x86_64"; - sha256 = "f83e81dea8da021371db0968a94577a1c6c3d4a3f74edc7b46fdedc47a473366"; + sha256 = "0dcba23318509f033f5d080108f26fb546674e1f672cc4c6f60bdb7ebb3bcc22"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/tr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/tr/firefox-138.0b9.tar.xz"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "03ed4ab6015aefc21dbe35190734260643caf7f36467c56f8cf720d8ffa72968"; + sha256 = "ebf9f41cc25946c0eb12dbb1238d7740a8ddf76159f8df6167415a9afc2032dc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/trs/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/trs/firefox-138.0b9.tar.xz"; locale = "trs"; arch = "linux-x86_64"; - sha256 = "b8b2290dc1fd69480cc14b25639a347d493948dfc25e7816d1963907a4f33d9e"; + sha256 = "64d9d779bd9eac33d0fd8945598a4a2168440dcc4396316fe7a3b16fed9e7ff2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/uk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/uk/firefox-138.0b9.tar.xz"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "8016a28eb52336b369bdff7146af4e83442b7263191b36367ee0bdf2f3c33c2d"; + sha256 = "fe8999f25346cb39bf18e13cc13fdbe2e0add0b70dd6a62f633623e7fc108f65"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/ur/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/ur/firefox-138.0b9.tar.xz"; locale = "ur"; arch = "linux-x86_64"; - sha256 = "a107906c9e22713bf338b67c51b8c50a0dbed92549211097b0358e343a79b6f3"; + sha256 = "62e031e5ba00b90cdde5d8c5c6a232e2f02799dab6a645b2836b5d497fb4e138"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/uz/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/uz/firefox-138.0b9.tar.xz"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "15f2726658d3cbd9444716ab6aa0b393d29df37e9db96fc72fec5545865d05ba"; + sha256 = "22a7748c964ec5bec57caa2312fcef75538fab00fdb3880355d7abe967f7aed4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/vi/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/vi/firefox-138.0b9.tar.xz"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "67c961a25713221353c6fc422ca267cdb73bef6fba198e4ebf7cdc44eee9e015"; + sha256 = "3a4cd26ace63c2e9b9a2267a3f799d34d3cb4bff301413b5a30fb38cf84f7f22"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/xh/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/xh/firefox-138.0b9.tar.xz"; locale = "xh"; arch = "linux-x86_64"; - sha256 = "1ebf8bc0a3a94fecfbe50a5eeed4942998f83e047983da1ba9317c7e3c5a726e"; + sha256 = "2088e63127590fef556dbfd0b8f2badceb82565a67758f32a3f9a4b5be1f9ef4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/zh-CN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/zh-CN/firefox-138.0b9.tar.xz"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "6458482532f7f0483aa0fb32fffa0082f775855d3bfafa75e989a615d5066766"; + sha256 = "d5999efb8f70e8170117292aabc9fedf0ff69b0ecae6833352c636f3e2d743be"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-x86_64/zh-TW/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-x86_64/zh-TW/firefox-138.0b9.tar.xz"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "3d104c31729925ef76c7436343a776f3b33678d95c5b15e182939adf2a782ad3"; + sha256 = "fc9c4fc99157dfc6885202296e7bfbfd8d7757c135f3863179db219849a208cd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ach/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ach/firefox-138.0b9.tar.xz"; locale = "ach"; arch = "linux-i686"; - sha256 = "7479dc6122632f2cc38394263af9e5c83204e091530f3a1f6fde3895a144bb9e"; + sha256 = "7ce28f002755dcbfb1fe21a415c0852a1fbcb20e4667d7c8e9561f1bacd8ae5d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/af/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/af/firefox-138.0b9.tar.xz"; locale = "af"; arch = "linux-i686"; - sha256 = "9079967eea0a8c06d70ab710699056aa44389cd0db80abc7246d166d29161405"; + sha256 = "2e6c6e55d30ab8376e0abe0e347bc8f54e668066af222658e24750fcd54b96d2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/an/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/an/firefox-138.0b9.tar.xz"; locale = "an"; arch = "linux-i686"; - sha256 = "5b4aa10813bebba6f2a3f854539771d90b88111d7a33464dc5bc44e6e3d2a271"; + sha256 = "5768efea60392994777b11e8fae1081522343b15e9943ce26a1feba0a01e471e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ar/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ar/firefox-138.0b9.tar.xz"; locale = "ar"; arch = "linux-i686"; - sha256 = "27b331312e6e312658290c15b4f643d74a79ece02be99369adbb0f3595f80f1b"; + sha256 = "14bc94bcdc76cc220064deb656b2b38f891048366d2f801f822757b6ee326217"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ast/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ast/firefox-138.0b9.tar.xz"; locale = "ast"; arch = "linux-i686"; - sha256 = "d763f646a358ce3486301eec5dd049d47d236600d91032a9fab8c116e194b8fa"; + sha256 = "af00bb8c1b4ae9522dd3f08f83f4d98f69537dbe016e5f70882176354beb67e8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/az/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/az/firefox-138.0b9.tar.xz"; locale = "az"; arch = "linux-i686"; - sha256 = "559e7881155e0e1e328622685f51a9dc355bc11b228ef50a84e6a4dd68570674"; + sha256 = "b4b44fdd925df1316a086757f207b569345c6121a29a24703a5260e3226d7c60"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/be/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/be/firefox-138.0b9.tar.xz"; locale = "be"; arch = "linux-i686"; - sha256 = "bca0a29c7662740d053975cd5659849e09d1b29e694c51ebe3db6889bbdbc4c4"; + sha256 = "9c81aac5cc32a640f83cc550444654e70a96cb170079ceeacdacb63ba47e6909"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/bg/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/bg/firefox-138.0b9.tar.xz"; locale = "bg"; arch = "linux-i686"; - sha256 = "f707c2aba8387f2c53b9a9f54b22b5ba263a348546625616957709b3ebfcd9d5"; + sha256 = "d479c27b0d8ede199fced85de653eb655470290fe34b7fa9835c3a849195a8f4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/bn/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/bn/firefox-138.0b9.tar.xz"; locale = "bn"; arch = "linux-i686"; - sha256 = "f4f12f428781608cf480e2b35b24f4570f93ec3e04a5d2a9708c77df2b061c92"; + sha256 = "6ccebe56abc1d453eb87d28b3bf9956fe2c0339bb1f3da50b9b22d42b147ec97"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/br/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/br/firefox-138.0b9.tar.xz"; locale = "br"; arch = "linux-i686"; - sha256 = "8ba3248074e7870d650e0a4435c0cf8a6a74c8a34516c04ac3cdbd0417c0fc3d"; + sha256 = "af48d70e9dda8ba429a0e9e56c55ca296f4fd8cbd11954fa90bd43335301ab94"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/bs/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/bs/firefox-138.0b9.tar.xz"; locale = "bs"; arch = "linux-i686"; - sha256 = "f1693020c29737622a97143ca82cd2dc93b0f41c25b75ebe5432a0b522f54367"; + sha256 = "bcb9bb9c923e6d7911e9c4a6498f473227608eb5d52aec3bc0bac029a847cecc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ca-valencia/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ca-valencia/firefox-138.0b9.tar.xz"; locale = "ca-valencia"; arch = "linux-i686"; - sha256 = "5acbbf7244b59673eb3a308d1e3b9ffd2735ee532780ddb97dfbf23ed3022e2b"; + sha256 = "5f17bb1126de1442bc2c47c494b3e7bd23018c3cf813d4f69a0858454c244322"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ca/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ca/firefox-138.0b9.tar.xz"; locale = "ca"; arch = "linux-i686"; - sha256 = "bb711a740bba862cdbedf18c23b54cf0873879bed2f97e2b0eeaad03f5890a2a"; + sha256 = "2ed1124e2518525121b44ec3a7ce536559d5b48826e1a5bed3f2ac4080aec48e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/cak/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/cak/firefox-138.0b9.tar.xz"; locale = "cak"; arch = "linux-i686"; - sha256 = "876521aaad356d8637c411d5e522840c7f49dbce0af601b96bfb4a24c8b4379f"; + sha256 = "d4da5d3d237ea1125d579ef37154b3812c0dc3bbf0eebaff44c2f8b962542ef9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/cs/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/cs/firefox-138.0b9.tar.xz"; locale = "cs"; arch = "linux-i686"; - sha256 = "eb442833658fb203ebfe1444a67528c17fc06c59737ccf4f034b0d256d79932b"; + sha256 = "0c26a5b6424a8e75105afb35357348e61609bfea05e8e5edabc2cb3dfe0d28fa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/cy/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/cy/firefox-138.0b9.tar.xz"; locale = "cy"; arch = "linux-i686"; - sha256 = "73f40e17cc4084b86c242b4d8124fded5c084c2ab936021bdadaf7be7e92e9a3"; + sha256 = "1016ca93fec5c4a62665d9d5db84d374ca589611963744e7e1ece7188fd8cf62"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/da/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/da/firefox-138.0b9.tar.xz"; locale = "da"; arch = "linux-i686"; - sha256 = "15c92c6d2d7b6f391ecbd4a9f949b3df56a942c1d4615bd0d3ba9ea5534fd660"; + sha256 = "7b73f8a206a2f1a2c78600cdda2add1d06a052230cb0404b6c1376e3fef1715a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/de/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/de/firefox-138.0b9.tar.xz"; locale = "de"; arch = "linux-i686"; - sha256 = "3a8c4c10841424ea86ffea7c351421f738328a393b950f6e2262bccd447de0f4"; + sha256 = "6e43a1c86555426646fecbbbae6b06e471766818f88ed62fbbeec82047247ac2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/dsb/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/dsb/firefox-138.0b9.tar.xz"; locale = "dsb"; arch = "linux-i686"; - sha256 = "c5b9d2b803ad0b886314d3ddaad23d9629887d82354e26c07d82ec868753b9b2"; + sha256 = "6e61c2cfad4397d9203ea0ecca7f77520ebe8281218d3ab543080b11de5bfac4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/el/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/el/firefox-138.0b9.tar.xz"; locale = "el"; arch = "linux-i686"; - sha256 = "99fde56a01a16ab1e09d009aa0e36697b5cbf9fb5b8b0b970dc88f4e281bf46a"; + sha256 = "9eb70baf74e6211020905a81d8bb85606448e16b1fe5542dca2b9e153b1ed9a8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/en-CA/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/en-CA/firefox-138.0b9.tar.xz"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "004f8db95896a2366343f7d00fbb30c0689a2910b53abe786a280d5f7f6781f5"; + sha256 = "74280be6ef4d49607bcea1fa913543e96408895aad19a4e214c85d35f857e1aa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/en-GB/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/en-GB/firefox-138.0b9.tar.xz"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "9a2c3371a2cad437e135412043863ecc769f941a9fcf741a5e88f57bf91971e7"; + sha256 = "02c2fe632d98fe4d8505ef53de2cb2e6e6da6090326ca230d12fc042ab229c18"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/en-US/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/en-US/firefox-138.0b9.tar.xz"; locale = "en-US"; arch = "linux-i686"; - sha256 = "d16fae37e6042ea23c5d7ffd3f5817730b5489bc1acff60de17bd4e64e6349ed"; + sha256 = "0a549086503c09cca2c9d7f89e586c5d110b341a500610c3f4a2d3e9ed25a409"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/eo/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/eo/firefox-138.0b9.tar.xz"; locale = "eo"; arch = "linux-i686"; - sha256 = "9dac38d1121ccdb5ce2124cf5ea10f12a417dca50385715ff4ee0d530b4eba95"; + sha256 = "f93d71d5e38e301e5f7232734aa54639ca4dba844a4a056c593f79bb517529c2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/es-AR/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/es-AR/firefox-138.0b9.tar.xz"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "85c96f509d0fafa7f2a2e744e483e7ffea4fb559cd7f918639023be358b41c6b"; + sha256 = "beb858411f25c11cbeae0de8603820b723313ff1c50d62545f844037030aaecc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/es-CL/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/es-CL/firefox-138.0b9.tar.xz"; locale = "es-CL"; arch = "linux-i686"; - sha256 = "27f083d3d7cac7c5b153e01f3890f493b48a7931a1d3158139c9f0670a89bf84"; + sha256 = "dcc809b75597e3ee0c9d320fe895169fd55b02fd0b5083ac974ba23251499f06"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/es-ES/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/es-ES/firefox-138.0b9.tar.xz"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "f4af98251961ae0f93f8b444bf8558dd26a02e467236fda34cf15bf54e2dbf36"; + sha256 = "67c62f317a1e6b8d8e054fb41feb2891886f2a2322da6eba6caf2449c3b5f122"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/es-MX/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/es-MX/firefox-138.0b9.tar.xz"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "3fcf3e01b81c53541429e089173740144027c2441f0e6a269919f8f6f4cff38d"; + sha256 = "e82a9713de44ab3a65b5d6a2479e302b755882b0f1a9e7bda8a729d0f9f5800a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/et/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/et/firefox-138.0b9.tar.xz"; locale = "et"; arch = "linux-i686"; - sha256 = "8c7d0a6c67917234ba3b8054a6ff30ebf42b746f74fc4b92434e958c4a4f66db"; + sha256 = "cf9c51d12336f421de096354de51964d1f1c167a71e1ddf42b942365f36bcff3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/eu/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/eu/firefox-138.0b9.tar.xz"; locale = "eu"; arch = "linux-i686"; - sha256 = "c2b5bdb5b6ed4cd17c0a16cb8a909a406038398c128b4409b7b2cf500cee510a"; + sha256 = "19db396937697d20534d4b277e305a88fa58aefd53622b30f62dca15d2248315"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/fa/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/fa/firefox-138.0b9.tar.xz"; locale = "fa"; arch = "linux-i686"; - sha256 = "1affa59a71f9d47ed01b7c2a4f704346b10029c84fa04a8fbab5377819587b94"; + sha256 = "88644cade82ed0e852bee544b031bc7eb9c9d3cf5e81d70d620c7e24525e0dee"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ff/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ff/firefox-138.0b9.tar.xz"; locale = "ff"; arch = "linux-i686"; - sha256 = "8609c462b25c386474fafe63614addafa66589857388ab94834b54c814db5ec8"; + sha256 = "1f89e5c3bdc3612c9dcc7e50246acf7afb46451c09f2411d788b8c85a7e7c3ad"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/fi/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/fi/firefox-138.0b9.tar.xz"; locale = "fi"; arch = "linux-i686"; - sha256 = "cbd0467316432d860e8ac154b4725c4301dff8e6a4943dd3d4294d54bb1839de"; + sha256 = "32fc8b17a67d35332ef39e575d35384dc152f999cf985ae787b88b8ee70da1b5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/fr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/fr/firefox-138.0b9.tar.xz"; locale = "fr"; arch = "linux-i686"; - sha256 = "3042106b307cf18c646b6a36a527e1981e731e8fd8e8c7f4f78008c5bd864416"; + sha256 = "c8a27b7c343e542712281c20c77403e982ddbf2ae5c1bde8cc0a1ca4feb6494b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/fur/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/fur/firefox-138.0b9.tar.xz"; locale = "fur"; arch = "linux-i686"; - sha256 = "f0a6afaea91f2e9c5c12393f960ad2a4041062262377bc5877d13f7c1ed93711"; + sha256 = "c21eb646929dcda7e4c5b079159ab60636d3f4cf5b4e1ebf1c169df1ed6a2692"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/fy-NL/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/fy-NL/firefox-138.0b9.tar.xz"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "661041ec4465bc3040dacd2dadaad9f9253568deb18e988712300e86cd158bd1"; + sha256 = "ee6f585f8e1bab66422c43a214de40b4c964102f6f8443312511134300f7718d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ga-IE/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ga-IE/firefox-138.0b9.tar.xz"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "eaeabd3bff721aa8281f4a5cda884ab6823544d528ad5e3ea036433053a77793"; + sha256 = "fd8c8f859675ff8a23c3923f88fe96e67cf6fca84011de64ace8febf1dc1974f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/gd/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/gd/firefox-138.0b9.tar.xz"; locale = "gd"; arch = "linux-i686"; - sha256 = "78de6bb428a013479925616db118e9d8e8062ecde75c1bef1de4cff24d08b39a"; + sha256 = "f3c69b4ef87dabd047b51780f8dbbbd3bb5102138ba67b5792418923faaee3a1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/gl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/gl/firefox-138.0b9.tar.xz"; locale = "gl"; arch = "linux-i686"; - sha256 = "0b931e1b7367b9e529766b33e7f9b33539638f0c8ebcdebe9803aa3102e4b51d"; + sha256 = "f8412a360248f60eedaf98b5bb973c17f0f586f02a700d58fb15de0a8dc30751"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/gn/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/gn/firefox-138.0b9.tar.xz"; locale = "gn"; arch = "linux-i686"; - sha256 = "c2703d7bf7827e6ceb5d5380321b0ff07705c3b0e5c7c5eef9b814e58c212111"; + sha256 = "475058f84ce6c87022d24782476ab300776e99f2c941e0a2c37c43ce4b16743c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/gu-IN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/gu-IN/firefox-138.0b9.tar.xz"; locale = "gu-IN"; arch = "linux-i686"; - sha256 = "d500719429666e63b2343e83c8c0b2ed87994dbe313f48961baaa45414739c5b"; + sha256 = "326b7c5a12ecdef9879b09af9dee007be2c8d962173cc03d28dc06e904d9259b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/he/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/he/firefox-138.0b9.tar.xz"; locale = "he"; arch = "linux-i686"; - sha256 = "225fe65494f8a2ea36f618c2b2bc8f22cd055e2c2142d243a9c74f067ba39a33"; + sha256 = "67a0961a17ab0ed020d6f0599e27bb76f205cd6b6f601c7dcb41c8241da529a4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/hi-IN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/hi-IN/firefox-138.0b9.tar.xz"; locale = "hi-IN"; arch = "linux-i686"; - sha256 = "8cda527dacaafbf33921e4630754ddbacd587d9f03aa7f4c4b27f8f9826b4b44"; + sha256 = "8c62141bab666ea189ec431bbe1246bb31df639fcbd19e1841441da8addae021"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/hr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/hr/firefox-138.0b9.tar.xz"; locale = "hr"; arch = "linux-i686"; - sha256 = "7b21066ee72f55b50d8e32d30d74b297fd3a04514b02ece928871a21b7845749"; + sha256 = "63cd4ad08842e62b8df6dda22183e30f93fd2528e5b4013cf83eeb92e50d256e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/hsb/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/hsb/firefox-138.0b9.tar.xz"; locale = "hsb"; arch = "linux-i686"; - sha256 = "33ea54c36ce97402c3f38eb70f7c3036a29383d2a786b91c0923faae890ecc13"; + sha256 = "889f9366ff2251e4228be3165171b582ce5c29d7ce3587ca3ffef0d35a4070ca"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/hu/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/hu/firefox-138.0b9.tar.xz"; locale = "hu"; arch = "linux-i686"; - sha256 = "7eacde8665ca348ea0108c9434193aac632d7543002c2a84fd643cab8cb1da72"; + sha256 = "552b9c7e629dd2dc51f5aa3bc554ce575da71e07a8038fc6bb52d7fc375d8698"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/hy-AM/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/hy-AM/firefox-138.0b9.tar.xz"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "2b979961fc4cf15ab839fc011d1007f57256244e0369e672bacf370fc7a586fd"; + sha256 = "15f0aa48bacc5faa3e70d5aa1273f9f366440bc7e59827a1a77a2954eda3062e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ia/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ia/firefox-138.0b9.tar.xz"; locale = "ia"; arch = "linux-i686"; - sha256 = "a6ebd0c8299a56e09e0251a78957693b44a7dd636540981f80e502d0ef7f6dc5"; + sha256 = "3d0649f01e2c0ecfd22a593aadec114b6d1d005157dfea0e1f8ec0dc2c2b5503"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/id/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/id/firefox-138.0b9.tar.xz"; locale = "id"; arch = "linux-i686"; - sha256 = "8e6e96dff1046f38febcd342ad383e72310c71cbf816da8f536d93c656d26319"; + sha256 = "a80ef0db6a0723a41a270f83e39fef4bc18103a66ead7dff209d800e2e785189"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/is/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/is/firefox-138.0b9.tar.xz"; locale = "is"; arch = "linux-i686"; - sha256 = "8bc09e75e17ce60c4d250aa673c41a92d9308743b425b3fe81ab5feffcfa331c"; + sha256 = "38e9415aee3673604144fca76825352e6f2cfc87aa3b43ca9a2f56af22542dab"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/it/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/it/firefox-138.0b9.tar.xz"; locale = "it"; arch = "linux-i686"; - sha256 = "b979aafd747007759f9658db5cf49545b7fc6c4dd7a8516bc682b54013d96fb0"; + sha256 = "eb75d8b9ae3afc769cb65f512f0cd0c4809ae089c39f073d61095969bea9297f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ja/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ja/firefox-138.0b9.tar.xz"; locale = "ja"; arch = "linux-i686"; - sha256 = "6b7b43ab0e602b19cd966fdaadc6733536b0e61f7e23b8633c230ee941446740"; + sha256 = "3015c6d1fa6680403314f0c793f4cd702dc3d591234d5a948457aa10b8541810"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ka/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ka/firefox-138.0b9.tar.xz"; locale = "ka"; arch = "linux-i686"; - sha256 = "620a990d91302c743acd9e2ed0d15af2ef7c9c95cbfcbd13abe31f37db667b20"; + sha256 = "513d1d6d81ef85f93516ca07e22c667f56d8c74c5b7dd97085eae9c3201e0227"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/kab/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/kab/firefox-138.0b9.tar.xz"; locale = "kab"; arch = "linux-i686"; - sha256 = "c549e9d8be66da2c60621deaf3c03c365b578ad026a8fbb18163f44a2edde8ff"; + sha256 = "77cc93beefce3542b29c9ee6cc9268f74b805a06b2a11f25ec6e0e3248d1ed48"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/kk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/kk/firefox-138.0b9.tar.xz"; locale = "kk"; arch = "linux-i686"; - sha256 = "319992af03c691622fd4e028dee9f68ff681b201c829c8fac94b6ac1b2444880"; + sha256 = "839056e0bf61a4f639b4e790bbc66314aef173cbf7b09e5f80a20c78099fc0db"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/km/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/km/firefox-138.0b9.tar.xz"; locale = "km"; arch = "linux-i686"; - sha256 = "f62bfee8800237128d7ae727564bda9060eb41d7d27f2b7eb1140c52b62e86f1"; + sha256 = "743ac6c946cc7d9a52e1c97fc5c0dbe26412fbe302247d55113815ecfa9f9c2d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/kn/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/kn/firefox-138.0b9.tar.xz"; locale = "kn"; arch = "linux-i686"; - sha256 = "818823253da880800026ae6e08739e615ee9aad15246e2579b4e96ee7e40f3ca"; + sha256 = "d4a2a27c7b4707218b72e7ea65c22ea68d9aaf53e3af8b7e1479f053373481fa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ko/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ko/firefox-138.0b9.tar.xz"; locale = "ko"; arch = "linux-i686"; - sha256 = "0fb41dc322ddd629311d6bcb8d6eb78a7127cf70cf6389f928c7cd7007b574bc"; + sha256 = "c57ea249d8470d9fd59aacf877574ed7710e8b4b67937bc991ba214269dbd11e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/lij/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/lij/firefox-138.0b9.tar.xz"; locale = "lij"; arch = "linux-i686"; - sha256 = "a87b35d5068ecabf1541d552e09518e6871751c35bde78e50bf67b2bbb0f9124"; + sha256 = "f79206346a6eee3c582bee7dcdb1442e230f0dba4ffa4af221199108cc31fb9d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/lt/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/lt/firefox-138.0b9.tar.xz"; locale = "lt"; arch = "linux-i686"; - sha256 = "89190fdf49f74bd65f09850432bb60ae457887480365d3edac3dc1eca76a30df"; + sha256 = "72cbbb299ae282f20eac44f00c42e41a8ec59bb02b35135cabb3689820b1d2b3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/lv/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/lv/firefox-138.0b9.tar.xz"; locale = "lv"; arch = "linux-i686"; - sha256 = "3d51fecaf98018f8d6fdad6402e635b42b16da88150867fc9c74f2cf900378ee"; + sha256 = "26da34db3ed639b3ec7931d78ad5bc541b056a3fe0c08e6c9612e30a10c8f878"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/mk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/mk/firefox-138.0b9.tar.xz"; locale = "mk"; arch = "linux-i686"; - sha256 = "fcd0107b68139c9585693efdbe52e4a67669a721bb0bb719b7375331fd081c11"; + sha256 = "1d49cd2a297bd97f1c4fb2852064959b70ce2a22fbdf9aadb9b0f8a702aa236c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/mr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/mr/firefox-138.0b9.tar.xz"; locale = "mr"; arch = "linux-i686"; - sha256 = "a6fa9a09d4de8a458913f9fcc5103bf098c0d49ff51e2d233e146411320c61a0"; + sha256 = "d0c0f33616bc6cec80af9480d9498ac5b1908938c6adf099e542e4e890c6d3d8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ms/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ms/firefox-138.0b9.tar.xz"; locale = "ms"; arch = "linux-i686"; - sha256 = "b3f3a2133d92ce08e8b77e6051f7c2109e8f210e11ade78e1dfdaec5c107c091"; + sha256 = "5fe8361933deebfed59b871af864da3402954179c7185d153d513718059e0c48"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/my/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/my/firefox-138.0b9.tar.xz"; locale = "my"; arch = "linux-i686"; - sha256 = "998882322ea526f81ae367025eddd7bb38c5f0da8d88ebfefbf78ae47c06b77e"; + sha256 = "bf4c16418ff1c09f0f32cd75701734a89323bd4b58f45d29b54d85e3ca46502d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/nb-NO/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/nb-NO/firefox-138.0b9.tar.xz"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "8a7b1e32d6895b7120f6de59614136c3fa6788d419afacd3aa3031b147a44b29"; + sha256 = "f6cd1229d9909ab4082dbb27305ea4c4568b910d19a3bb71bcede6ca62c61d47"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ne-NP/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ne-NP/firefox-138.0b9.tar.xz"; locale = "ne-NP"; arch = "linux-i686"; - sha256 = "2d764038f27072b9048b5ceea925160a577f655be63db9fbb10dcc313a0ecf19"; + sha256 = "373e6dfbdd023eafb0604346bbc29f70f9be5bc354cc861244c68040557cf0e1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/nl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/nl/firefox-138.0b9.tar.xz"; locale = "nl"; arch = "linux-i686"; - sha256 = "9f36b90b2e781872218598472b4351713976210f94544b284db420a902d90d5c"; + sha256 = "0a93d10dd9800759ced99444ec5628f48914f8c10f900bed3fb72dbd2e45a69a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/nn-NO/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/nn-NO/firefox-138.0b9.tar.xz"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "d717f8e3d80f21fdca92a39b0c85bb8d4d9279d42a471c8130f841e0a1a6092c"; + sha256 = "4525142f8879b8b4dbac13af7eeaf7c6551aaeaa4c8c1d9f0868cc0d5822ca8f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/oc/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/oc/firefox-138.0b9.tar.xz"; locale = "oc"; arch = "linux-i686"; - sha256 = "8b861eb3f4bf31caa19648d5d56b8fc4f3f6982e5bb66849b56e13240d2eef4f"; + sha256 = "f65837831aa178b4c11b7dfb6300539238bc86c201ba01507594118119888810"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/pa-IN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/pa-IN/firefox-138.0b9.tar.xz"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "883bcbd17478958b7051a4831ae4c4cae6eb317fa0ad57d7dc3e5ee5a07744f0"; + sha256 = "bb3cb018cfb3a3ce9f2da7d84abc547124f88940e03d15ba13cbdb4c41c996c0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/pl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/pl/firefox-138.0b9.tar.xz"; locale = "pl"; arch = "linux-i686"; - sha256 = "94179577c1acfb8ce027e2abf828cb29025d7419bf110eb33f998ca69f8e44a3"; + sha256 = "dd99387cb9df41d09939532c3e44b5718eb927a8062816ea38ef9340e5268bfc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/pt-BR/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/pt-BR/firefox-138.0b9.tar.xz"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "3b18635c5ccab1a3fb31fddd5ec73a5bcafd217d91b392b4bfdb152c8e60888c"; + sha256 = "9b8d90f71be0959bcc5a0f55d5df3b34054426e2c7ee39443cdf531bd24c3290"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/pt-PT/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/pt-PT/firefox-138.0b9.tar.xz"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "e6c0d92e26f3c793654269f0ac041492f1a61efade8c21a8f1f5d9f5c7a462f6"; + sha256 = "7fcb4b787f79200699315a2991acfedf0fcff022dd1816953d5b441717cfa27e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/rm/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/rm/firefox-138.0b9.tar.xz"; locale = "rm"; arch = "linux-i686"; - sha256 = "896fa4341255ad6edd05747b1d9b7862746649f5a17d1771e52e4d3ecfcb0f8d"; + sha256 = "0d5fe4fd2b1d8fa8fc828cae26410e5dc306528fd26cb1b2f0e9407e684a067a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ro/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ro/firefox-138.0b9.tar.xz"; locale = "ro"; arch = "linux-i686"; - sha256 = "1453aa68ab6f1473ea6f2bd74b3d1bbf7867a3f874f5ac4a006f711c7f2606e0"; + sha256 = "80639cd1d6d35da3ffdf9879857841cd1f5e457248c3d74827b0185c80ef78dc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ru/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ru/firefox-138.0b9.tar.xz"; locale = "ru"; arch = "linux-i686"; - sha256 = "f66e1fe7ad4be8c611a4086e2c274315761040f8a703501b88569dfc4a47cd35"; + sha256 = "20de91eb62d677a3b38e9af038f73c83ff29703d82bdbfcda4d0bde5d289f604"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/sat/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/sat/firefox-138.0b9.tar.xz"; locale = "sat"; arch = "linux-i686"; - sha256 = "9348c28b1407b57a2498eeaa8928e9b2df482414a4ce842e0fd5d32a15ef960b"; + sha256 = "14f1492ba249fedf9b3d64192a3ffe033c053ad412efdecc9a9c5e6fb188b148"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/sc/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/sc/firefox-138.0b9.tar.xz"; locale = "sc"; arch = "linux-i686"; - sha256 = "5f1e203b0bc54bef4d26b799c9f0b36135a10e52a11432442a993c422009777d"; + sha256 = "149ae0e4e41f7e3d45b80e905b1ed21b4559af34d4082f6a37dd0cc29acb1aad"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/sco/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/sco/firefox-138.0b9.tar.xz"; locale = "sco"; arch = "linux-i686"; - sha256 = "9d5aa39bea903a6c64798b57208a37a429a48188fc90f85e07d439a8b4d4c982"; + sha256 = "5dcb0ed695c0a0c5b8ed0702e035881c1ae0d2339fd8efdf667c7e0e153f09c0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/si/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/si/firefox-138.0b9.tar.xz"; locale = "si"; arch = "linux-i686"; - sha256 = "c976b9445a68b630c6b8092c3f9cf1809759d3541d9db3edd791a2c8a2c58431"; + sha256 = "4550b500d57c250eb81842562643f9f590102fcda1ff22f9495fde5b0f710fea"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/sk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/sk/firefox-138.0b9.tar.xz"; locale = "sk"; arch = "linux-i686"; - sha256 = "528cfc6405d82e49ce1d3f50b982778e0666e6f2a6db2581cb85d0c32fcfb958"; + sha256 = "2805569e2503c28584871f16e5793d5ae21d0e886a2fc06a71fb5b2e445b025f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/skr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/skr/firefox-138.0b9.tar.xz"; locale = "skr"; arch = "linux-i686"; - sha256 = "5888fba7e084bd38d72fb4d3b9ec8515c78f60a07e7297a02c86611f9d854645"; + sha256 = "67c457cfb2d5259859380312876f446b67b12f1f90c10d2af5265dc7f268ef1e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/sl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/sl/firefox-138.0b9.tar.xz"; locale = "sl"; arch = "linux-i686"; - sha256 = "05713c10164b52bd8d8e0713fba0c983b3b1eb8c7aa36192e967b808ca99f3ae"; + sha256 = "d727b93beb813e17596dad9255b8268a036ae206047119125caca31011f91079"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/son/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/son/firefox-138.0b9.tar.xz"; locale = "son"; arch = "linux-i686"; - sha256 = "0ba74b43e2a4c41730fba7ee8b67c3b545fc580d3f891d5498c2d2ee5d2305a6"; + sha256 = "2316c93c31ca52db0683decc256116a1c1195013f92a98b554fce2e5fcef22a1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/sq/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/sq/firefox-138.0b9.tar.xz"; locale = "sq"; arch = "linux-i686"; - sha256 = "d14cba8c3d12875ae5899e48a94eeaf2405f1877df587508b59bf3268fa92b0e"; + sha256 = "14eb34f915c76c6d156739581f4a0dd5c184c6b3a5dea1e5609febd288d6ff9d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/sr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/sr/firefox-138.0b9.tar.xz"; locale = "sr"; arch = "linux-i686"; - sha256 = "7990c1a1fdd683dc42746eb062fb8c7dae0f1de5d15a6d78c1d798eb1be71f89"; + sha256 = "b1ee34d1db9d61695a01e2bca1d020064a927a97cbe731bcc61413549221f7dd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/sv-SE/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/sv-SE/firefox-138.0b9.tar.xz"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "132a876e9bb9acd950646bd8b39a098f46c5c6ebafd07cb86da8b85407758d29"; + sha256 = "da1d0e004484fef9637b42971ab8863d3fa9e27d8d079aa75609a46c745eb94b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/szl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/szl/firefox-138.0b9.tar.xz"; locale = "szl"; arch = "linux-i686"; - sha256 = "fbf778fe846332616090640a2545ffbc4c536e7769137758d22b0aa33e3534d1"; + sha256 = "1a9cc76e14217ac4b41e78b0838763c6bee4117994cf79bdd23bedd28f557efe"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ta/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ta/firefox-138.0b9.tar.xz"; locale = "ta"; arch = "linux-i686"; - sha256 = "49ed6296edbce85d364427a730bfb74e536dbbc92b1887a6d23878d1dffb4d65"; + sha256 = "1d307fc31ccb8567d6a118835f9233bd3880403275b466f2c7289ebba4c667d4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/te/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/te/firefox-138.0b9.tar.xz"; locale = "te"; arch = "linux-i686"; - sha256 = "df9eabaec213bdb9df7c3fb487048f5d0e03ef9e1b36edd5a508c3699409a33f"; + sha256 = "15aa89919b9d96d1a338122cdc1cc29a83643b63d5a761b7e8a819c33be009f5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/tg/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/tg/firefox-138.0b9.tar.xz"; locale = "tg"; arch = "linux-i686"; - sha256 = "976fb89f5111994de51ffc51d6a18e5c96aea5bc6a80c57690fb843a453eca18"; + sha256 = "82c69afd7dd65e3efc9ed8df2f269e9ea0b9a26ca8c03a215ecefe971925bee2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/th/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/th/firefox-138.0b9.tar.xz"; locale = "th"; arch = "linux-i686"; - sha256 = "509845c33718e4d66c50507a919a7eeffa65aa62795edc37bf03374056025cec"; + sha256 = "aee29d229015401c5f5e619df494ab687997c77c7f177e52e8c027b1240e5b5a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/tl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/tl/firefox-138.0b9.tar.xz"; locale = "tl"; arch = "linux-i686"; - sha256 = "ce97e79ee1f295bfb92a26126efa3366681655806014e38b0218621745159dfc"; + sha256 = "d8de7515395316fa30d58d0b0dc3b684e9f5d2e3aa46a65142ff82731c0eb488"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/tr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/tr/firefox-138.0b9.tar.xz"; locale = "tr"; arch = "linux-i686"; - sha256 = "4d044aebd3893b607626ffb53b57ff962b3bc12770f5be7da42f12f5c03eebb6"; + sha256 = "dedf256fef420ea2d8e5231ad02c681064cf00bb978d97bf07c4a5624ddc883d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/trs/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/trs/firefox-138.0b9.tar.xz"; locale = "trs"; arch = "linux-i686"; - sha256 = "f7c6cdb6b7d29a66b9f5477bd8ad6e2f90d2c9c51c0ba454305fc47bdd0222fb"; + sha256 = "547dfa2d5e3b6bc3cfa536b2e29a925be1b8001ef23db9f91681bf946ea72cd0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/uk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/uk/firefox-138.0b9.tar.xz"; locale = "uk"; arch = "linux-i686"; - sha256 = "544abc2450e681b0ca8ec833a13bd02ddf94bb8dab370126b190eb3d46b35548"; + sha256 = "536e095a95c64dff9ed40f60748af048b935d0bf2cf7b94def0e6b5bd9567a3c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/ur/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/ur/firefox-138.0b9.tar.xz"; locale = "ur"; arch = "linux-i686"; - sha256 = "0dd23e0b02a3d25131ccada64e1ca735ec97702b8c5bd8904f04cfd93701004b"; + sha256 = "2a4feeef97879302c6a64dc60f8a81f200eba292b23292cec5cfeddb5d0481d1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/uz/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/uz/firefox-138.0b9.tar.xz"; locale = "uz"; arch = "linux-i686"; - sha256 = "44f51fe9a06fef663ae75d5e045ad7ffabd0b111ec3a312b1d427c272719ade4"; + sha256 = "38ec2a3424b6c2a587c720c5d4a73bcc0fc54459e1e36e7bc8ae7f97256253a4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/vi/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/vi/firefox-138.0b9.tar.xz"; locale = "vi"; arch = "linux-i686"; - sha256 = "0e1514cd3dceffc592703a44afcc456d0ebb01528c3215ede19c97c86cf50937"; + sha256 = "8f66051904bd6675a8e6eb0a08747f076509d1e0fce8b77fabe43b2b9d15c034"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/xh/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/xh/firefox-138.0b9.tar.xz"; locale = "xh"; arch = "linux-i686"; - sha256 = "b4ac60687f69fc7d697bf6cbd3d34cf17c0135aef0044148da9bc930926a4d21"; + sha256 = "f113652ecf2ea05717079c75c86a56edadb04660c5de4bbd1bec42dff9f302b4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/zh-CN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/zh-CN/firefox-138.0b9.tar.xz"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "feca67d43e8cac981830b46c826c7739ed79051c51008622d5900b8184e64486"; + sha256 = "2cf9172ff5665370b5bf1dc96b482cbe1fd61dbcac2b28cc8c07c7a9d3d88707"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-i686/zh-TW/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-i686/zh-TW/firefox-138.0b9.tar.xz"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "787b75e92cd96ae3808ad38dcd7300360d017ac234f3fb3fff7f11874ae3f7d6"; + sha256 = "09da69ee59a9c8c9896d64c83e45e9bec02510cfbc899bab7743573459e4eb22"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ach/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ach/firefox-138.0b9.tar.xz"; locale = "ach"; arch = "linux-aarch64"; - sha256 = "4dba4de14bf320c5e71a133b183b60b7d04d83a76d86cf77ac507c45bea9fb8e"; + sha256 = "5e3a47e49853d2f50247538cadfb55d0b9090657ad529fea54718d06267a806d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/af/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/af/firefox-138.0b9.tar.xz"; locale = "af"; arch = "linux-aarch64"; - sha256 = "f429dd76944239dfe5d55242e1a194aad714ec352e8b0f2b10bf5dfc322c92d9"; + sha256 = "81116a42585f5055e59380b553a824a5cafa9db59c55368368f7cff925b5cfa9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/an/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/an/firefox-138.0b9.tar.xz"; locale = "an"; arch = "linux-aarch64"; - sha256 = "6a74e60087a3c6d75d805c320c6b2920ed14a5d0354b3e6cd7573fe2954cbdab"; + sha256 = "e03b451a6c36d82e693b0e7e91d16df8c3ec44a3df6575a9e43ae85642aa21a2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ar/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ar/firefox-138.0b9.tar.xz"; locale = "ar"; arch = "linux-aarch64"; - sha256 = "59cf79704987223a349c033c00f323b4f85897f3879fac905c8b217e9f41ebdd"; + sha256 = "d0fec6cda884d47ef9cb7d59b4601e2804a6fab505b1a4105d35ca6f3c7511a4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ast/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ast/firefox-138.0b9.tar.xz"; locale = "ast"; arch = "linux-aarch64"; - sha256 = "e172f60107ffb37fa364f2401a63818216083e907b25dd4b8142248b999b6589"; + sha256 = "858524559c1d4c8dfc08e78da932c46dbef4eacb3d3a14c8504f116c9345a80e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/az/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/az/firefox-138.0b9.tar.xz"; locale = "az"; arch = "linux-aarch64"; - sha256 = "70c01c89cbeab938b3d09fbd609d20393853e7b7cf9370f7d8111567477dde57"; + sha256 = "5f52c31274a50c978f29614d33e41fd2bb75b4753b0f5a7f1ba99ef12296594c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/be/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/be/firefox-138.0b9.tar.xz"; locale = "be"; arch = "linux-aarch64"; - sha256 = "a1b5371d5c0f533fffe78b193e38945bc1ecefc13e6d41dc75ea6fe7a0012b8b"; + sha256 = "cb7d7f7af9949e2fab6ec9ea506167b32deeaf623a597a480f832118b90e1d20"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/bg/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/bg/firefox-138.0b9.tar.xz"; locale = "bg"; arch = "linux-aarch64"; - sha256 = "f546a566fc02cd611b54da162e01eca1591c05950faa283619ff462f311e46c7"; + sha256 = "9e6eab8a7d726360a7111e0a33d7d293d782eb0708de5325696f6324942d6a91"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/bn/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/bn/firefox-138.0b9.tar.xz"; locale = "bn"; arch = "linux-aarch64"; - sha256 = "83493f8396f07c94297e4d3f140b64286d5dc0aa9fabebf011640f7a31a5174e"; + sha256 = "c9c9c27437e507d65956ffa1e6f7d72cd518a80e8246ac3468305b83f9e14fd3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/br/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/br/firefox-138.0b9.tar.xz"; locale = "br"; arch = "linux-aarch64"; - sha256 = "e8f9348a03dbbb95dc54669295263412c6770ba8092668776205325c4d66c498"; + sha256 = "88328aeef69c610e176cf13f0505a498da6ece55acc7918bf93385775d103333"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/bs/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/bs/firefox-138.0b9.tar.xz"; locale = "bs"; arch = "linux-aarch64"; - sha256 = "1e8f291cc4869139abf7fe4cc0aa34bde2cd6ddd65b1de88122c190eb1fd9f41"; + sha256 = "e0ed2d31920ddeaaa253efc5ce6a88b0d410c393e43a528304928db60bc571bf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ca-valencia/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ca-valencia/firefox-138.0b9.tar.xz"; locale = "ca-valencia"; arch = "linux-aarch64"; - sha256 = "d70218ffd6bb42aead9e52656bec4f78ff5d71e43a6a4ad74f5687e171af530c"; + sha256 = "e19a51c97579ee162255869d4dae6c5be99955a1f0aa3af39d42ecadfc4c949b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ca/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ca/firefox-138.0b9.tar.xz"; locale = "ca"; arch = "linux-aarch64"; - sha256 = "92549a05b092a511ee061144204195f44a12db4e69a91962a678dd98b456e59a"; + sha256 = "bfb1a6818fe98a2f514d1c7a6bd2c4421158443b7e7845c866dcb005db1b7d41"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/cak/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/cak/firefox-138.0b9.tar.xz"; locale = "cak"; arch = "linux-aarch64"; - sha256 = "2b45886b54ef0e35605d76871c93df2773077bd63a19edb940fcf46e7769cdfb"; + sha256 = "1177513167534f2893b8d5e40da2d9240c8171514b3206fcd21ff480a610fad2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/cs/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/cs/firefox-138.0b9.tar.xz"; locale = "cs"; arch = "linux-aarch64"; - sha256 = "13bc0c007f6cb8fdc1dd2110dcf4a688315bd72e3b5abafad0cc1143695459c1"; + sha256 = "0227f210716065e251e3c3b69feea728d689cbfa6cea637e114c675fee3510be"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/cy/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/cy/firefox-138.0b9.tar.xz"; locale = "cy"; arch = "linux-aarch64"; - sha256 = "c3a60745e0a01dcc024fb5f1a669b2ca64a44f0d3ccfd2ba55a8c54656115417"; + sha256 = "bead0d7876df8c62cf66c9f1b497547b7374affb325a7c3817df69554a3a7690"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/da/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/da/firefox-138.0b9.tar.xz"; locale = "da"; arch = "linux-aarch64"; - sha256 = "455d9e99a3c6b40b1b043b9cfbcbbb1a1c591ea48f5d516255241eb393e2b574"; + sha256 = "c6e30d23b71facbbebf2123603d5043af13bf77428c24bf4e82f8998dccaa8a1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/de/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/de/firefox-138.0b9.tar.xz"; locale = "de"; arch = "linux-aarch64"; - sha256 = "7955b14e88187ba18ca1cc548406932639d8aef074c2b95016d92d4f1d16b695"; + sha256 = "0b44715056d449255557bd1d79b6b342ebf87f218a5764010f27b0acc80a7919"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/dsb/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/dsb/firefox-138.0b9.tar.xz"; locale = "dsb"; arch = "linux-aarch64"; - sha256 = "45ff9f1fd0ca8a5a2292dcde5e3a13e9aa0021f97cf9321f281003a3ed360fbe"; + sha256 = "9b3ce960970fea55ebc905af93e86cf08130249cb761ed7845d4b9d949e22db5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/el/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/el/firefox-138.0b9.tar.xz"; locale = "el"; arch = "linux-aarch64"; - sha256 = "8c72c30ceb3a44b79b3a7c48234744c47cd726592131c71b8abc27b1c769254d"; + sha256 = "83b8fa1155fbb5a4fe47713dd954d05d365faf1e94f76b6bf69f258ac0cda546"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/en-CA/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/en-CA/firefox-138.0b9.tar.xz"; locale = "en-CA"; arch = "linux-aarch64"; - sha256 = "3c030eeb676ec244a66bc049abc2f7c41c4b9af648a8bea243682fdb4af400aa"; + sha256 = "8b1faddb955b3f6f66816ccaed1224d0ecc2d558c34e9fa9a2ae11ec1337757f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/en-GB/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/en-GB/firefox-138.0b9.tar.xz"; locale = "en-GB"; arch = "linux-aarch64"; - sha256 = "2e729717b9cc8029784cd2e00767552ee68b08796c20a4ccf0197076b7e2c281"; + sha256 = "d309c99711904629a5f2f28256f39489966bcabc13c93b477b9129a73de90822"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/en-US/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/en-US/firefox-138.0b9.tar.xz"; locale = "en-US"; arch = "linux-aarch64"; - sha256 = "c9246a995979a13b142deddff467e899954c327ec8a945cc0b22a7e20663c001"; + sha256 = "e30ba28b3d4cd0122edac0185c9948af1bf46d99dceafbd7549bc560e6fca824"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/eo/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/eo/firefox-138.0b9.tar.xz"; locale = "eo"; arch = "linux-aarch64"; - sha256 = "6faf6b3db45088f3c7c826a6a0c866c5b16fa5a7ecd6080ab448eefe056a67f2"; + sha256 = "8b62f77cd305122bdc8434128bda39ed5a5b719d09e5019697a47ed7c3cf06b1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/es-AR/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/es-AR/firefox-138.0b9.tar.xz"; locale = "es-AR"; arch = "linux-aarch64"; - sha256 = "d354bd8afe79bc10eee44e71ca1f0d71a0295e393fab7dfc80b58d82fe8dc0e0"; + sha256 = "a2fd10d9ae8854581939f1fc1b17de5d3849b49e35073e2b8e51fda98ae435e4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/es-CL/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/es-CL/firefox-138.0b9.tar.xz"; locale = "es-CL"; arch = "linux-aarch64"; - sha256 = "36a553b846c8e2fd5880574a88a0113132634e0e049de5c712d20e6897c1c176"; + sha256 = "e22a22a4c12f1fd3127898848b11183a0e3256700e747aabc0bbba03f8b7e3a9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/es-ES/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/es-ES/firefox-138.0b9.tar.xz"; locale = "es-ES"; arch = "linux-aarch64"; - sha256 = "3a09f6aab43b37c65585c4352e8df347d0505c84bf8d7a5c510b0e540873c23d"; + sha256 = "3daff8ee93b00a5f45908f4271fdfb32d4f46ffb7c3309a283ab9c1668985ff2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/es-MX/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/es-MX/firefox-138.0b9.tar.xz"; locale = "es-MX"; arch = "linux-aarch64"; - sha256 = "218d3547916fb90d9fbf3f43eb2e17473807429bd7f82cd98469f3f49c33b119"; + sha256 = "0b93af4b976bfb4381422b26c20f82cdbd751ea1027a34e53e385dc27bd9730c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/et/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/et/firefox-138.0b9.tar.xz"; locale = "et"; arch = "linux-aarch64"; - sha256 = "6522bf6eab8e7dc2856ed36f5e8a34a5a2c7938e35df288261d9bb21fb08188e"; + sha256 = "f944396258f6d7b15241cb54a8e299eea0116c314093fb66ad35be36c2273059"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/eu/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/eu/firefox-138.0b9.tar.xz"; locale = "eu"; arch = "linux-aarch64"; - sha256 = "8030d323e062a1173eda9e9ca2d29ed7a77155f202eb990b71aae790bb62fabc"; + sha256 = "0cf77645cea356217270228d70458f450075260b90e00287d5613a3ef0dade24"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/fa/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/fa/firefox-138.0b9.tar.xz"; locale = "fa"; arch = "linux-aarch64"; - sha256 = "7ef0bb05281b92a6b74e856fda0941c3390e5dccc3cf9a5a2d927a640ef9d1cd"; + sha256 = "b2898e4c79921744d7536c2ea49669158044b25aa4d52c812d15d2428e24f3b2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ff/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ff/firefox-138.0b9.tar.xz"; locale = "ff"; arch = "linux-aarch64"; - sha256 = "002f289c4ca6b7ff049e9e527a914d8725015f5072fafff463f9b573097a5008"; + sha256 = "e208fd92fee2998746840149ba8db5f57be571dc77681bce374d3092510eefaa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/fi/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/fi/firefox-138.0b9.tar.xz"; locale = "fi"; arch = "linux-aarch64"; - sha256 = "96c014b4d4c3de54d2f78b9d74d1ff138410261cd09600e0fce4892c415f8de7"; + sha256 = "74be727c6a4c6e7f0900d00d0fefab5dc47bf3b1fec9c755c7a4cd01ac059340"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/fr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/fr/firefox-138.0b9.tar.xz"; locale = "fr"; arch = "linux-aarch64"; - sha256 = "e0e597b512754cc7426a75655d4fda26eed5c219afd195bf50f81849f07a3ce6"; + sha256 = "b272e4764673d06d9aff452bfb008e121a161c14d1f181a078b480f530e0a5d2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/fur/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/fur/firefox-138.0b9.tar.xz"; locale = "fur"; arch = "linux-aarch64"; - sha256 = "ec7bd02d2f83959143ac47889a7bef5bcfd7082b7858c276aea7513f9503d32e"; + sha256 = "d465858108df841e2f2f6f58a89f9312390044132ddbb20aea32dac1c1d4e618"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/fy-NL/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/fy-NL/firefox-138.0b9.tar.xz"; locale = "fy-NL"; arch = "linux-aarch64"; - sha256 = "9c0315fb65755fd68e646a3735ba7e7ace5a43b8664c3cb0131a35300e7672fc"; + sha256 = "498808abd06f0d076d0753a0bb4489634b3d462982a4549fe3af4471c6b49db5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ga-IE/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ga-IE/firefox-138.0b9.tar.xz"; locale = "ga-IE"; arch = "linux-aarch64"; - sha256 = "484828425dad1a8ee77b35ec531a2144df77b5bcb0f9620aad11a994409d41c4"; + sha256 = "cfa34d2677bc39e3122c5598dae7fd203f5e9b1d25807dd4ba9de0f669e7f3e8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/gd/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/gd/firefox-138.0b9.tar.xz"; locale = "gd"; arch = "linux-aarch64"; - sha256 = "b831c4d80580ba2aecf7e724816ea26075c952c7de28c8cb78496d75af533cdf"; + sha256 = "17721331129c81f92eb62391dbf304518defe8b44caa45336dfcaff68e19843b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/gl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/gl/firefox-138.0b9.tar.xz"; locale = "gl"; arch = "linux-aarch64"; - sha256 = "cbdd00d04fb1a9728123becc83f0279a96bfe283a27dc044898dc87a7ccb5440"; + sha256 = "1c42e35bd71b2757c5dab64f76112f7364e5a3c20a64127279943435f452f663"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/gn/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/gn/firefox-138.0b9.tar.xz"; locale = "gn"; arch = "linux-aarch64"; - sha256 = "389dcb60e0e20e2ea19b751cf9cba2160175e7c297b838ccb3a11e0bc78d259a"; + sha256 = "2d867826ff6a89331107921d095b8f1b4fce4bd42e84be759822a625c99362a0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/gu-IN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/gu-IN/firefox-138.0b9.tar.xz"; locale = "gu-IN"; arch = "linux-aarch64"; - sha256 = "de31fafb532f86565ec03c939250fc32537f672ed09cb3eea21272fae962eefc"; + sha256 = "84e2b7d754a5ac24a9abf31fb1686200d15a95c72b19f758df314f55a129cdc7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/he/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/he/firefox-138.0b9.tar.xz"; locale = "he"; arch = "linux-aarch64"; - sha256 = "cce0cc8fa93f6318688ef2a664159199e4c6e1a2d3aa984ec46bfbc2536fc0ba"; + sha256 = "5bb6ec9c4223a87615290a35a5cdaddc5ff0800d85a807ab3daef0f3dd4665e2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/hi-IN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/hi-IN/firefox-138.0b9.tar.xz"; locale = "hi-IN"; arch = "linux-aarch64"; - sha256 = "3dc345ff030c1ba64e95f06b6ba3e6c9a2aa175ad7464fb7bcea28d4225f175a"; + sha256 = "4aa787d3a09962e752c6e727ca07b3221a35954f49644407ab0aac22b920a339"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/hr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/hr/firefox-138.0b9.tar.xz"; locale = "hr"; arch = "linux-aarch64"; - sha256 = "bed89b538d187722de5e18a3d6e2aef568c3a5bf1be7c2f9b418c263dac0f11d"; + sha256 = "41c46b1269ef9ca0972dea37a17701a428bd0c7ce64f19c94d838cadefc2a231"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/hsb/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/hsb/firefox-138.0b9.tar.xz"; locale = "hsb"; arch = "linux-aarch64"; - sha256 = "143ca5f040c5274775b40c3a7f6a9756ab04160423eaf7338f75b0f03629dadf"; + sha256 = "f359c2f20e3ee863a617419c6020818395c136a4b10991c930adbbc41087fa9f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/hu/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/hu/firefox-138.0b9.tar.xz"; locale = "hu"; arch = "linux-aarch64"; - sha256 = "aa979034b6fdd14f3e948eddc0f4bca691a213279f4351dadefef6d2e7bcf7b8"; + sha256 = "8b5ac5424dc438b4e10673a3f6019d85134b0045259c1407355c2df1768e5643"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/hy-AM/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/hy-AM/firefox-138.0b9.tar.xz"; locale = "hy-AM"; arch = "linux-aarch64"; - sha256 = "6345b24a6ee4d5a63340c7673dac3afc729ce001e37e9019d6ca74e8606bf298"; + sha256 = "718c98bcdbb5aaffb0dd1647a632159554cbf215d4a33824212f578d1b2837d6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ia/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ia/firefox-138.0b9.tar.xz"; locale = "ia"; arch = "linux-aarch64"; - sha256 = "d9875bf61c807750f626237c55dbb6b9c0544fda8ad4d6f60e0c8b98293bca1b"; + sha256 = "cb77e02f475bac87767a91fc6448070aea9e13ea36513a510c36ceb64910d895"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/id/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/id/firefox-138.0b9.tar.xz"; locale = "id"; arch = "linux-aarch64"; - sha256 = "b8fbad9f4bd52096ebcef09da94271a2b22914b034b0aa3dde30763061003f2a"; + sha256 = "9f3be1d02453213115639060ac02cc5d154aeb30eafffee5a258cee6c41a1187"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/is/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/is/firefox-138.0b9.tar.xz"; locale = "is"; arch = "linux-aarch64"; - sha256 = "5905f09f368c0b8165eecd8fd896c082d4b6ad7a288e2de96223b00fae4f380a"; + sha256 = "c360c3a27aa8b174e38d05c9a4dd40a72d3b9968b3efb705fba97433aaeaa66c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/it/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/it/firefox-138.0b9.tar.xz"; locale = "it"; arch = "linux-aarch64"; - sha256 = "4d0051391fc367fa2f9de69ad761fa8832aa5b4aedaf4dbbc09b4668cb7c6ee7"; + sha256 = "fbbe8510405a558eb15d1ec6e99f7e307743220f2a5886c85fc6600e36048cc0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ja/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ja/firefox-138.0b9.tar.xz"; locale = "ja"; arch = "linux-aarch64"; - sha256 = "c56d46da0be7190bc1112420080a1ab34e161576b53165cc189e03d2c5174e63"; + sha256 = "8d16338d16eaae1a065afe8d34477eeb3a246679cc8f65e79725450735d40d0c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ka/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ka/firefox-138.0b9.tar.xz"; locale = "ka"; arch = "linux-aarch64"; - sha256 = "83149973b83d8405d1cfd3d02ee382ec79e606bf852398abf0960d7f13b100a9"; + sha256 = "fc08a082a89d3edca2bcf61f295fd624cd86e93cb9a1615638c8212f526a4b4a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/kab/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/kab/firefox-138.0b9.tar.xz"; locale = "kab"; arch = "linux-aarch64"; - sha256 = "4086a97e0341648b4784b8e3cec4029f4fed00ebaab536b655230123349ec24d"; + sha256 = "4bea9b3c151c7521b0bef38a21bfe7685e4a24c29c645765f42604cbb55ba854"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/kk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/kk/firefox-138.0b9.tar.xz"; locale = "kk"; arch = "linux-aarch64"; - sha256 = "9232a3cb15b541e6b0375f1eb2ec7ad60c32e4a6aff255d373e3895ecfa01ed0"; + sha256 = "b54663b35c23513ffd45bdce3e0baff2d0f4539ecedea99d3a2ec31ee0d954b1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/km/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/km/firefox-138.0b9.tar.xz"; locale = "km"; arch = "linux-aarch64"; - sha256 = "777e0d9beab3480e0556a10caca424cdc8d51a2e19751e8bbcd47ba536a4a0a4"; + sha256 = "240df5bc306c8eb09fbc707592f92e3a8a50026491b01120aeceea835204d007"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/kn/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/kn/firefox-138.0b9.tar.xz"; locale = "kn"; arch = "linux-aarch64"; - sha256 = "c15468a0a703020e1fc518b0752fdc522e047b7138b485a8b72133e4622a7d12"; + sha256 = "2eb01ed15c38fbf823310f0500046fec193ffce8e260674e48e9940545362fb6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ko/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ko/firefox-138.0b9.tar.xz"; locale = "ko"; arch = "linux-aarch64"; - sha256 = "1c49f3125f5b71e5ba2b7e5bb4331f4f1d561b0a12d8a21488bfe9a6c11d0f72"; + sha256 = "3443871e1e0b6f332379cbfd4bc9b4ba4902973644c091d91304cb9197519ce8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/lij/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/lij/firefox-138.0b9.tar.xz"; locale = "lij"; arch = "linux-aarch64"; - sha256 = "919caa0bd18b0d7baaa393c0682aa250d980a045dcf4303df5d4076cd212ff07"; + sha256 = "24be60be0493df639d1fdcec1067c331dace4067d9caf6fddd8833c706edb937"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/lt/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/lt/firefox-138.0b9.tar.xz"; locale = "lt"; arch = "linux-aarch64"; - sha256 = "7cca85b0f5cb687c4a58cb3ed8440850cad102ce8b9410978f51e42e3f3ce732"; + sha256 = "1c4db0a32b53ebfa0868d743dd61b6578655db2559902b834a6e3c878e546831"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/lv/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/lv/firefox-138.0b9.tar.xz"; locale = "lv"; arch = "linux-aarch64"; - sha256 = "3404a967cee8b521da2aa2e44de6e1fff492266f11d4e16b6130889530c4bae6"; + sha256 = "6902fe65dfa7d5ff8761835b4ae5c3a545b5fda885ef59c69bfcc102f8caeeb0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/mk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/mk/firefox-138.0b9.tar.xz"; locale = "mk"; arch = "linux-aarch64"; - sha256 = "3764c46ad2eaeeb18692cb23399ccb958fc855a1776096252e1362c8d6b7746d"; + sha256 = "7e6c17647447da936ba569bf2e1773b3b56de0f2703f47104b53d4e69e78dafd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/mr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/mr/firefox-138.0b9.tar.xz"; locale = "mr"; arch = "linux-aarch64"; - sha256 = "b953a8be0c927e09e8a32b607a2e405be0d343e2856f31d4727edd3cc21c72f3"; + sha256 = "4e0aca0d5e4d994ea9c1b223afc6a5c5b31b48c130c57be8db5d28a4886a6260"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ms/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ms/firefox-138.0b9.tar.xz"; locale = "ms"; arch = "linux-aarch64"; - sha256 = "2c2654b5b7288f1b03c340a58b6cff5bb2fd28188e3a60dc36732ffc9a5d3548"; + sha256 = "8cee31a6791556810ac791ebcef8ac5d30fc1cb72678cb2935e0555f62651ad4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/my/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/my/firefox-138.0b9.tar.xz"; locale = "my"; arch = "linux-aarch64"; - sha256 = "93a8cea90b538beff516fe946a9b6bf96fc1e8edbcf30c90bf3b311bb662340a"; + sha256 = "c8a7d8b72da9930d9e8a013c01e028ead5c5525cc46c5043180fbbc924ce38ac"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/nb-NO/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/nb-NO/firefox-138.0b9.tar.xz"; locale = "nb-NO"; arch = "linux-aarch64"; - sha256 = "da4e75f2f00f535908141a3ae633f4391f6d181a7b8072cd3ff1ee36a0783a68"; + sha256 = "7e53fb62a519456519531e4e279bdd004a626b4de690e9524eb2bcba16457224"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ne-NP/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ne-NP/firefox-138.0b9.tar.xz"; locale = "ne-NP"; arch = "linux-aarch64"; - sha256 = "c1b57522b6628e23d74d889958fe43ed88e236d612fcd2d1b124307f9ce2a1d9"; + sha256 = "e503ff023e51e5c772bb4460b74534be7539083803491eb6901559c41fa93d25"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/nl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/nl/firefox-138.0b9.tar.xz"; locale = "nl"; arch = "linux-aarch64"; - sha256 = "f08d7801a35502d87ba79536d0852046db3ad086559c0f355633b24e915bc18a"; + sha256 = "a6f442c5cbeada795d317e3245e1c28d865b302a1b01e484009cb34130067576"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/nn-NO/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/nn-NO/firefox-138.0b9.tar.xz"; locale = "nn-NO"; arch = "linux-aarch64"; - sha256 = "3caf0db9687ae89a5a4e226eefd9739179a7889ec81c2ca26186f2eedba8bcdc"; + sha256 = "24bb3d9bba4549696ae339edefaa3d3f231ca1cc5672d2d52909c1cd09f8439d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/oc/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/oc/firefox-138.0b9.tar.xz"; locale = "oc"; arch = "linux-aarch64"; - sha256 = "46799eb3d065f4a16100afaab696827b156474d9d83b4e95ef0678c7981f52e1"; + sha256 = "502ec34f615bee8b3bdfa9cb95960f9518e3ec90d4db802bd9b68f1a9efe1a60"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/pa-IN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/pa-IN/firefox-138.0b9.tar.xz"; locale = "pa-IN"; arch = "linux-aarch64"; - sha256 = "889931181631832037cbcbbb2c883a22a154ee4161309d9bb3f87721eb97e191"; + sha256 = "2ffcf30b6ba7373b232bbf82f6bf33704a85bb0be7f498f42d505c47bc6dd620"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/pl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/pl/firefox-138.0b9.tar.xz"; locale = "pl"; arch = "linux-aarch64"; - sha256 = "9ee7fa9407d5ba68483f1383e453cfaa6598e26b8e8800d9fd5b1246579d8e13"; + sha256 = "51d5b980a1b086f8a4ab728a357ca705c8b4fd495c77ad233f08ef7b84c7ae73"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/pt-BR/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/pt-BR/firefox-138.0b9.tar.xz"; locale = "pt-BR"; arch = "linux-aarch64"; - sha256 = "26948401239bed611427dd907bf8c16ec8aa7fabe901817eca4b404a56dc0a13"; + sha256 = "77bca34213ea30dce4f105f0322832ced7ca2f52d4d6fa07345069a8af6be4fe"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/pt-PT/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/pt-PT/firefox-138.0b9.tar.xz"; locale = "pt-PT"; arch = "linux-aarch64"; - sha256 = "9b61c3bc750c01a97e063533bc383cbc37b8a756685fa51fbdf0d37aca0c4a3e"; + sha256 = "8e6ce8af8690284c764bcfa6588ca52997c2e6e31dadec887a063b3652a2e45a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/rm/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/rm/firefox-138.0b9.tar.xz"; locale = "rm"; arch = "linux-aarch64"; - sha256 = "1090ee036cf5ccc6e54c8d027c3dfc4b48d0b551b5d1e5445af9df8df3773b6a"; + sha256 = "7e69cb160def7fa4dc050cbd442635b94f2700c93aaf35cef02b0bc81834f07d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ro/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ro/firefox-138.0b9.tar.xz"; locale = "ro"; arch = "linux-aarch64"; - sha256 = "4c5ec76aa87d68d23136f8b6493cf49de7e1f4626ef6591bf7f56ba2a05e9848"; + sha256 = "af8a4e1bbd653f5e81e0e2b53e7ead8397327cb0aa6bc12dd57de051b22ac6ad"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ru/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ru/firefox-138.0b9.tar.xz"; locale = "ru"; arch = "linux-aarch64"; - sha256 = "0d689b56d5ac9feab771f71af7b5fdac84c493fa53d6df84107a97982b4816b2"; + sha256 = "1b4f515de80b1ed1783644d22b61cc9f9e120831b55e354d67a95d47cb8915de"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/sat/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/sat/firefox-138.0b9.tar.xz"; locale = "sat"; arch = "linux-aarch64"; - sha256 = "9f7b24a649199891e9df80f418a7ac446dfa5c788654e865f5a345495912787b"; + sha256 = "f95bef736c704afcef3c1a04cfaa85f06d5b44d7e7cc9dc16a7e953281efad08"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/sc/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/sc/firefox-138.0b9.tar.xz"; locale = "sc"; arch = "linux-aarch64"; - sha256 = "c6ad52380b870f26799bb06b98864aab86f25b33c41666c5f2d759d51eba6ef1"; + sha256 = "8a376905176ea8e58b761cba3fd844c3995db46e1784215e197944babe498dbe"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/sco/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/sco/firefox-138.0b9.tar.xz"; locale = "sco"; arch = "linux-aarch64"; - sha256 = "2936d6257caa14ac7143fb2e2b94a461bb843503580906f8135210cbca57dfbb"; + sha256 = "ecadf0d2b59f3c3ca78cda22a305cfc29943690769303e4402457002f1ad5668"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/si/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/si/firefox-138.0b9.tar.xz"; locale = "si"; arch = "linux-aarch64"; - sha256 = "81822c077d0970599d5eb3e5c189c8d9c2c8f7e6c81e21d2150a3448450a9859"; + sha256 = "ef2f594a5582765bd6f32c1089182a3e5c6bdd5f42d68e6984501190a9f524cd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/sk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/sk/firefox-138.0b9.tar.xz"; locale = "sk"; arch = "linux-aarch64"; - sha256 = "0c6478b5031dcd15a2e33a5c90be75f284eb5f6e6986681d5d47f2a6c0c77331"; + sha256 = "b4b6faecd8bb2c21fef94b2ac1dd2cd05031f04ce07bba5b0e69fabb68a2f9bf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/skr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/skr/firefox-138.0b9.tar.xz"; locale = "skr"; arch = "linux-aarch64"; - sha256 = "6215e72dd7d3632b7fbc6931a9a0419063ba1530ab0ab1d75b86da3a7f84af97"; + sha256 = "0c2d8fd72ca6c597092ff5e24be16a17a3a4600428b2acc8ed98ea3a0c6732a8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/sl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/sl/firefox-138.0b9.tar.xz"; locale = "sl"; arch = "linux-aarch64"; - sha256 = "a516ff966fccccd21a7372bd657dde36140197ca2ac0f9fc2ff5a138abd74189"; + sha256 = "7edce37cad96c5c5555f63d804ec2fb61dea416e231a8d39725e835dda35133a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/son/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/son/firefox-138.0b9.tar.xz"; locale = "son"; arch = "linux-aarch64"; - sha256 = "fbec94c4d3d4418c06d8d6efe93d42afdbc9b7de0c2cd438db14b32e65243618"; + sha256 = "c11063194e36ee19681d777aa415565dca2ee736648c34cf37cb30b52f2ba700"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/sq/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/sq/firefox-138.0b9.tar.xz"; locale = "sq"; arch = "linux-aarch64"; - sha256 = "cdc237a4a886e5b529b8f71d23e29d8a275bd2c804e2299db2d2a5da75a34a7e"; + sha256 = "4f4c1bddcad1e0483da836f75aa93f2bc8282ee0d9861e9c1bf27df60793c4f1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/sr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/sr/firefox-138.0b9.tar.xz"; locale = "sr"; arch = "linux-aarch64"; - sha256 = "d69d4bd632eb6fc9b116449c4da3324bede43e403184b45aca638a1d1df4bafa"; + sha256 = "a0faf86b492539e7def08c4b90ecb279e3b006e14a043dc48534746206d7e555"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/sv-SE/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/sv-SE/firefox-138.0b9.tar.xz"; locale = "sv-SE"; arch = "linux-aarch64"; - sha256 = "3c113a2404605870064f1f8b792025fc23a84dac4414c422a264a316ba88af63"; + sha256 = "63f3cd89b64671e31bf1cbff9112d80b95199e12e6df9e516069c1d86d5a34c3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/szl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/szl/firefox-138.0b9.tar.xz"; locale = "szl"; arch = "linux-aarch64"; - sha256 = "d035ef26694caac8f64cd71c2633e3309d5d8d9ad1a88884edaf9b79dfacbf6c"; + sha256 = "1ad7b45cbe71bf50ae0837993a359ca81a4841e59d6b537a72475c28df79612c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ta/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ta/firefox-138.0b9.tar.xz"; locale = "ta"; arch = "linux-aarch64"; - sha256 = "5c9d1e685c27dbec4beed6c134f925c18ecfc55e1f338eaf0961f45a8aaca82a"; + sha256 = "b75104161d68cbb513aa6c1f0bf5215997de73345b9ca7c7899061bef2cd5d78"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/te/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/te/firefox-138.0b9.tar.xz"; locale = "te"; arch = "linux-aarch64"; - sha256 = "766c287ab620c1656c6a9f9f015d164b0d3d5a9aae15e528c0441a890cd4a661"; + sha256 = "a6836538ff1c2a98ee049af9ed6bb6bb5d50d7a852c7d5566a7334f7ed7c3ca2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/tg/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/tg/firefox-138.0b9.tar.xz"; locale = "tg"; arch = "linux-aarch64"; - sha256 = "50ef2e5781a433b7805c977889a34a202f3a17d1bd931a923b76c9f9bfef5d05"; + sha256 = "9f731f33297fa4061047b7c40d331eeacd5debc8162140de8736ed50676ef563"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/th/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/th/firefox-138.0b9.tar.xz"; locale = "th"; arch = "linux-aarch64"; - sha256 = "a26724d9359df4ebca36a0b7ac7e48dfc882e53e0624b939302a899511371061"; + sha256 = "0143fd3b0899b6e93188290c486cceb96066627c1c39a1aa446d4fe1bba17bb9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/tl/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/tl/firefox-138.0b9.tar.xz"; locale = "tl"; arch = "linux-aarch64"; - sha256 = "cec6563c1836c69ef503f2307cf8a2671db43fea2968eb80fbe63141c6d0c48a"; + sha256 = "c8411db1ee1aa0180fd354f4571d299edb962e3b8ef60951f9fc08c886b11fea"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/tr/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/tr/firefox-138.0b9.tar.xz"; locale = "tr"; arch = "linux-aarch64"; - sha256 = "3ade583446f7858772af48080fcadad55254d97851389e3fff02dffcd74e988c"; + sha256 = "448201c4e9f0d6952d838de9ff6bcfe69a4769c2714228949d0148f56d9330a3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/trs/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/trs/firefox-138.0b9.tar.xz"; locale = "trs"; arch = "linux-aarch64"; - sha256 = "853baacdb7ea6470764de05f64fffe6eaef7563c25b4ece73fba1e1cd52eaa59"; + sha256 = "f725dee6d30b294e83f75942834f51705bf34b67c77cf4ffeaf196dda137b75d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/uk/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/uk/firefox-138.0b9.tar.xz"; locale = "uk"; arch = "linux-aarch64"; - sha256 = "b083cae062edc44eead68adb030b5c885fd004b4c9aab63d451151c8f0a95ea7"; + sha256 = "6953218f8567be687af1d53a50ca9f725248877ef662b4e0ef008063c763e8d7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/ur/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/ur/firefox-138.0b9.tar.xz"; locale = "ur"; arch = "linux-aarch64"; - sha256 = "7fcd0c36294c345eaa39b889364f919fcb35a07749009548cfb041ec6d0faf50"; + sha256 = "aeefe7e4096ac1af3f7ec767606306ffc73d1040d09f43f54f201b451a23b401"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/uz/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/uz/firefox-138.0b9.tar.xz"; locale = "uz"; arch = "linux-aarch64"; - sha256 = "8cdca4b49f7b61e6dce0303af91ab171ba19bc68ef26c31709cb549faf802ed0"; + sha256 = "f4589f2e3a49c207b90875dbd01d358d519bd2f5105f6d6045a1364d89a44d65"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/vi/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/vi/firefox-138.0b9.tar.xz"; locale = "vi"; arch = "linux-aarch64"; - sha256 = "f333e144c031925e1fb2016a9c1bac1bfca794feb8f68d32798b95c7470bbf22"; + sha256 = "5d768acd15e31d66445a7548324e4d782ccf88922a5bfa56c0a4d3caf75a0db7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/xh/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/xh/firefox-138.0b9.tar.xz"; locale = "xh"; arch = "linux-aarch64"; - sha256 = "3d04450587c1a914c9494d48f8330b131346675a5050304b59e4639a0d7d5699"; + sha256 = "798a0636308acde4888372e94d6e3f993fbe906c089613e96b4e626273783f87"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/zh-CN/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/zh-CN/firefox-138.0b9.tar.xz"; locale = "zh-CN"; arch = "linux-aarch64"; - sha256 = "61ac04cad80424a04cffe63009d1f491fe83bf9aaa37fd9f53b32b6bf44045f1"; + sha256 = "8fa3a3be5c1db35edea30715d7d2bfa0a6435d88b4e17d400a57be323df77d62"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/138.0b8/linux-aarch64/zh-TW/firefox-138.0b8.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/138.0b9/linux-aarch64/zh-TW/firefox-138.0b9.tar.xz"; locale = "zh-TW"; arch = "linux-aarch64"; - sha256 = "c887b4b68d10263a65423ccf7f7367733d9d19cc4de9ff52c6b2402ca2fc3ba5"; + sha256 = "8bca45e1549d5dedb8e3ff67a6df7b3f212e82de1f6e21dbe1bb3cc355db03b4"; } ]; } From 5ed237dee067599329a02cefba7542d7da9a70f8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 07:46:37 +0000 Subject: [PATCH 126/210] turso-cli: 1.0.6 -> 1.0.7 --- pkgs/by-name/tu/turso-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tu/turso-cli/package.nix b/pkgs/by-name/tu/turso-cli/package.nix index 5b1bb7d3e935..a19bca9f539d 100644 --- a/pkgs/by-name/tu/turso-cli/package.nix +++ b/pkgs/by-name/tu/turso-cli/package.nix @@ -8,13 +8,13 @@ }: buildGoModule rec { pname = "turso-cli"; - version = "1.0.6"; + version = "1.0.7"; src = fetchFromGitHub { owner = "tursodatabase"; repo = "turso-cli"; rev = "v${version}"; - hash = "sha256-5XGcB003fYAQi8r+IjPxKVRtFgGFkfP2hOIxptlXn9E="; + hash = "sha256-WmGNVo6rnoHysEFBNFWRem91Ua0Cv8hPYSGWzuCKVZo="; }; vendorHash = "sha256-tBO21IgUczwMgrEyV7scV3YTY898lYHASaLeXqvBopU="; From a7c67282b249b5455419b87906c3041872f75e7a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 08:12:44 +0000 Subject: [PATCH 127/210] squashfuse: 0.6.0 -> 0.6.1 --- pkgs/by-name/sq/squashfuse/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sq/squashfuse/package.nix b/pkgs/by-name/sq/squashfuse/package.nix index 3a55cfa171b5..a3e8bf3cbaa5 100644 --- a/pkgs/by-name/sq/squashfuse/package.nix +++ b/pkgs/by-name/sq/squashfuse/package.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation rec { pname = "squashfuse"; - version = "0.6.0"; + version = "0.6.1"; src = fetchFromGitHub { owner = "vasi"; repo = "squashfuse"; rev = version; - sha256 = "sha256-d2mc6bIlprnVV5yCN7WxrE91ZMTSaJtpR0UVEROoYJQ="; + sha256 = "sha256-HuDVCO+hKdUKz0TMfHquI0eqFNAoNhPfY2VBM2kXupk="; }; nativeBuildInputs = [ From 3ca21ca654de4fc3022afb500d3b4e38b08bd3e7 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Sat, 26 Apr 2025 10:25:18 +0200 Subject: [PATCH 128/210] passt: enable debug info --- pkgs/by-name/pa/passt/package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/by-name/pa/passt/package.nix b/pkgs/by-name/pa/passt/package.nix index 651ec40b198f..50acc192edcb 100644 --- a/pkgs/by-name/pa/passt/package.nix +++ b/pkgs/by-name/pa/passt/package.nix @@ -16,6 +16,8 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-IE0BMM24lrl5NHeQGkAZZVwmAsvkhDN64pARdEiOM6s="; }; + separateDebugInfo = true; + postPatch = '' substituteInPlace Makefile --replace-fail \ 'PAGE_SIZE=$(shell getconf PAGE_SIZE)' \ From 5b5a27851214916f0e7588b54fce7086ff161820 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 10:51:05 +0000 Subject: [PATCH 129/210] python312Packages.yfinance: 0.2.55 -> 0.2.56 --- pkgs/development/python-modules/yfinance/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/yfinance/default.nix b/pkgs/development/python-modules/yfinance/default.nix index ea5761f87117..375a1c0141ba 100644 --- a/pkgs/development/python-modules/yfinance/default.nix +++ b/pkgs/development/python-modules/yfinance/default.nix @@ -23,7 +23,7 @@ buildPythonPackage rec { pname = "yfinance"; - version = "0.2.55"; + version = "0.2.56"; pyproject = true; disabled = pythonOlder "3.7"; @@ -32,7 +32,7 @@ buildPythonPackage rec { owner = "ranaroussi"; repo = "yfinance"; tag = version; - hash = "sha256-F/FUdPVtgs6aQt5jzf+UCZf/CXBZtgDXATvr+qlKjpU="; + hash = "sha256-Y+tFlkBn+MJxmohbP9bRxPXC4OTt3GvTpozguOZJ5EQ="; }; build-system = [ setuptools ]; From 175eae680f1b4e1df52f29e7ad3c7624356371aa Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 12:37:05 +0000 Subject: [PATCH 130/210] cargo-zigbuild: 0.19.8 -> 0.20.0 --- pkgs/by-name/ca/cargo-zigbuild/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ca/cargo-zigbuild/package.nix b/pkgs/by-name/ca/cargo-zigbuild/package.nix index 8ecc440197a6..856ef613ceaa 100644 --- a/pkgs/by-name/ca/cargo-zigbuild/package.nix +++ b/pkgs/by-name/ca/cargo-zigbuild/package.nix @@ -8,17 +8,17 @@ rustPlatform.buildRustPackage rec { pname = "cargo-zigbuild"; - version = "0.19.8"; + version = "0.20.0"; src = fetchFromGitHub { owner = "messense"; repo = pname; rev = "v${version}"; - hash = "sha256-S/Xx487z8LFjCSrB9tQTJy4+AQial2Dptg5xZqzPkVE="; + hash = "sha256-sUoEKLaUBxKKtCwgw/CcLrVRA4OMhto7d0PR+TMU5xk="; }; useFetchCargoVendor = true; - cargoHash = "sha256-L9SoaXGzYHY6vOWESvovHNzSehOWD4RGAC/3K6qT6Ks="; + cargoHash = "sha256-jvSOYWydnCFgJx1LTzQ1kHEVpzsdPLo19NVMBaLJEeQ="; nativeBuildInputs = [ makeWrapper ]; From 773d6c4ce73bce15ced79371f88c4fb5db960122 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 26 Apr 2025 12:45:04 +0000 Subject: [PATCH 131/210] xfce.xfce4-panel: 4.20.3 -> 4.20.4 https://gitlab.xfce.org/xfce/xfce4-panel/-/compare/xfce4-panel-4.20.3...xfce4-panel-4.20.4 --- .../xfce/core/xfce4-panel/default.nix | 27 +++++++++++++++---- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/xfce/core/xfce4-panel/default.nix b/pkgs/desktops/xfce/core/xfce4-panel/default.nix index b863995947ba..f820f4a55bd3 100644 --- a/pkgs/desktops/xfce/core/xfce4-panel/default.nix +++ b/pkgs/desktops/xfce/core/xfce4-panel/default.nix @@ -2,6 +2,8 @@ stdenv, lib, mkXfceDerivation, + fetchpatch, + python3, cairo, exo, garcon, @@ -26,15 +28,28 @@ mkXfceDerivation { category = "xfce"; pname = "xfce4-panel"; - version = "4.20.3"; + version = "4.20.4"; - sha256 = "sha256-tLWjU0M7tuE+qqDwaE1CtnOjDiPWno8Mf7hhxYxbvjo="; + sha256 = "sha256-P1EZefpGRZ0DQ5S4Okw9pyly23d+UdPp5xMj1wJc44c="; - nativeBuildInputs = lib.optionals withIntrospection [ - gobject-introspection - vala # vala bindings require GObject introspection + patches = [ + # Fixes panel not shown on external display after reconnecting + # https://gitlab.xfce.org/xfce/xfce4-panel/-/issues/925 + (fetchpatch { + url = "https://gitlab.xfce.org/xfce/xfce4-panel/-/commit/e2451cacd950f4b7539efd1e5e36b067515dba9b.patch"; + hash = "sha256-h2iPlghHJeHD9PJp6RJrRx4MBsaqXuNclAJW6CKHE4A="; + }) ]; + nativeBuildInputs = + [ + python3 + ] + ++ lib.optionals withIntrospection [ + gobject-introspection + vala # vala bindings require GObject introspection + ]; + buildInputs = [ cairo exo @@ -55,6 +70,8 @@ mkXfceDerivation { ]; postPatch = '' + patchShebangs xdt-gen-visibility + substituteInPlace plugins/clock/clock.c \ --replace-fail "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo" ''; From 2de1cf61501a7e0202ccb540be23b77cacece30c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 13:01:44 +0000 Subject: [PATCH 132/210] pik: 0.19.0 -> 0.20.0 --- pkgs/by-name/pi/pik/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/pi/pik/package.nix b/pkgs/by-name/pi/pik/package.nix index b4bf6065bd9c..528c13129c38 100644 --- a/pkgs/by-name/pi/pik/package.nix +++ b/pkgs/by-name/pi/pik/package.nix @@ -8,17 +8,17 @@ rustPlatform.buildRustPackage rec { pname = "pik"; - version = "0.19.0"; + version = "0.20.0"; src = fetchFromGitHub { owner = "jacek-kurlit"; repo = "pik"; rev = version; - hash = "sha256-G4GTrS3zUQVLsdc/19qPl4GWZZe4U8jV+UOkX36fMWU="; + hash = "sha256-ETDNaz23USQrH7TGJhdJvyt1NRr22TLFAdsWf1oV4uM="; }; useFetchCargoVendor = true; - cargoHash = "sha256-T8kgWjmmffPFewtp+5g15RoNXCoQH5bliTukM26JnlI="; + cargoHash = "sha256-swm0+5OrCNy9w48BTBioUOdcAW4i38i2pKmee3VJbh8="; passthru.tests.version = testers.testVersion { package = pik; }; From 0567223d2d5c81fef663af8c93c244597a95cf38 Mon Sep 17 00:00:00 2001 From: Marcin Serwin Date: Sat, 26 Apr 2025 02:15:44 +0200 Subject: [PATCH 133/210] theforceengine: modernize --- pkgs/by-name/th/theforceengine/package.nix | 27 ++++++++++------------ 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/pkgs/by-name/th/theforceengine/package.nix b/pkgs/by-name/th/theforceengine/package.nix index ef3e677bc65b..27ae223d3616 100644 --- a/pkgs/by-name/th/theforceengine/package.nix +++ b/pkgs/by-name/th/theforceengine/package.nix @@ -2,8 +2,9 @@ lib, stdenv, fetchFromGitHub, - SDL2_classic, + SDL2, SDL2_image, + libX11, rtaudio, rtmidi, glew, @@ -14,20 +15,14 @@ zenity, withEditor ? true, }: -let - # package depends on SDL2main static library - SDL2' = SDL2_classic.override { - withStatic = true; - }; -in -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "theforceengine"; version = "1.22.300"; src = fetchFromGitHub { owner = "luciusDXL"; repo = "TheForceEngine"; - rev = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-m/VNlcuvpJkcfTpL97gCUTQtdAWqimVrhU0qLj0Erck="; }; @@ -37,13 +32,15 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - SDL2' + SDL2 SDL2_image + libX11 rtaudio rtmidi glew alsa-lib angelscript + zenity ]; hardeningDisable = [ "format" ]; @@ -63,12 +60,12 @@ stdenv.mkDerivation rec { --replace-fail "flags(flag::has_zenity) ? \"zenity\"" "flags(flag::has_zenity) ? \"${lib.getExe zenity}\"" ''; - meta = with lib; { + meta = { description = "Modern \"Jedi Engine\" replacement supporting Dark Forces, mods, and in the future, Outlaws"; mainProgram = "theforceengine"; homepage = "https://theforceengine.github.io"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ devusb ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ devusb ]; + platforms = lib.platforms.linux; }; -} +}) From 3d2f0248cad492953106a2543e403194615ccf45 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 14:12:25 +0000 Subject: [PATCH 134/210] crawley: 1.7.10 -> 1.7.11 --- pkgs/by-name/cr/crawley/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/cr/crawley/package.nix b/pkgs/by-name/cr/crawley/package.nix index fa0e0b0fc9fa..26030672969e 100644 --- a/pkgs/by-name/cr/crawley/package.nix +++ b/pkgs/by-name/cr/crawley/package.nix @@ -7,18 +7,18 @@ buildGoModule rec { pname = "crawley"; - version = "1.7.10"; + version = "1.7.11"; src = fetchFromGitHub { owner = "s0rg"; repo = "crawley"; rev = "v${version}"; - hash = "sha256-vc3HHkX0BFVSJi1Ll9T8IgYh5P6rzi4FowE7Jdy/tO8="; + hash = "sha256-P+BsfVYqUDZ+wqIwziWLI3V0nUnypenHFfmw6EkPigo="; }; nativeBuildInputs = [ installShellFiles ]; - vendorHash = "sha256-jj8FNZs/bkFQxveOkqmGVO3MNPPv5O9ebodoi7hhzIs="; + vendorHash = "sha256-lcCcfn83WGBegQzUKEF8kpu7DdcLyVbS+PGX0mYrr40="; ldflags = [ "-w" From f9fb99af54b89cb6a16c4ad7aa2874d7ba145c76 Mon Sep 17 00:00:00 2001 From: luftmensch-luftmensch Date: Sat, 26 Apr 2025 16:13:57 +0200 Subject: [PATCH 135/210] mpvScripts.eisa01.simplehistory: init at 0-unstable-2023-11-25 --- pkgs/applications/video/mpv/scripts/eisa01.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/applications/video/mpv/scripts/eisa01.nix b/pkgs/applications/video/mpv/scripts/eisa01.nix index 38e6e4f50567..cdf0501f88f7 100644 --- a/pkgs/applications/video/mpv/scripts/eisa01.nix +++ b/pkgs/applications/video/mpv/scripts/eisa01.nix @@ -54,6 +54,14 @@ lib.recurseIntoAttrs ( }; }; + simplehistory = { + scriptPath = "scripts/SimpleHistory.lua"; + meta = { + description = "Store videos in a history file, continue watching your last played or resume previously played videos, manage and play from your history, and more"; + maintainers = with lib.maintainers; [ luftmensch-luftmensch ]; + }; + }; + smartskip = { scriptPath = "scripts/SmartSkip.lua"; meta = { From 67b99bb8830fcbc30a6a5eecbe135ae0f07fe68b Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Sat, 26 Apr 2025 13:58:52 +0200 Subject: [PATCH 136/210] black-macchiato: Fix failing tests --- .../python-modules/black-macchiato/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/python-modules/black-macchiato/default.nix b/pkgs/development/python-modules/black-macchiato/default.nix index da26ce0ed3a8..56677dd344af 100644 --- a/pkgs/development/python-modules/black-macchiato/default.nix +++ b/pkgs/development/python-modules/black-macchiato/default.nix @@ -5,6 +5,7 @@ pythonOlder, pytestCheckHook, black, + fetchpatch, }: buildPythonPackage rec { @@ -21,6 +22,14 @@ buildPythonPackage rec { sha256 = "0lc9w50nlbmlzj44krk7kxcia202fhybbnwfh77xixlc7vb4rayl"; }; + patches = [ + # fix empty multi-line string test + (fetchpatch { + url = "https://github.com/wbolster/black-macchiato/commit/d3243a1c95b5029b3ffa12417f0c587a2ba79bcd.patch"; + hash = "sha256-3m8U6c+1UCRy/Fkq6lk9LhwrFyE+q3GD2jnMA7N4ZJs="; + }) + ]; + propagatedBuildInputs = [ black ]; nativeCheckInputs = [ From 7a160a23cb3b60afa0f21cae2596812f991dee97 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 17:03:34 +0000 Subject: [PATCH 137/210] httm: 0.46.8 -> 0.46.10 --- pkgs/by-name/ht/httm/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ht/httm/package.nix b/pkgs/by-name/ht/httm/package.nix index f86da87740f3..f06e9ee087b9 100644 --- a/pkgs/by-name/ht/httm/package.nix +++ b/pkgs/by-name/ht/httm/package.nix @@ -7,17 +7,17 @@ rustPlatform.buildRustPackage rec { pname = "httm"; - version = "0.46.8"; + version = "0.46.10"; src = fetchFromGitHub { owner = "kimono-koans"; repo = "httm"; rev = version; - hash = "sha256-IGhEKtu4RMhI7VYn6I4M9eFY6MdcWxiHsu90rY0l8sw="; + hash = "sha256-O1WIoHN0R78lJaPFCEYm4NTNTKwfNGdwi0POQRiuGKk="; }; useFetchCargoVendor = true; - cargoHash = "sha256-LmQ3+yqSO7vhnV6XshUSSe6QkYVcradVsmIcLrdNE94="; + cargoHash = "sha256-uOT8naOnimA9Xt2uA8aCAy0w/5WXZajacN1d5Q27uSY="; nativeBuildInputs = [ installShellFiles ]; From bf6cd4844718b5a122201d9cf6b9c694e3dff589 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 17:05:41 +0000 Subject: [PATCH 138/210] terraform-providers.aci: 2.15.0 -> 2.16.0 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 3b385c2bc2cf..e7fe57fd3c01 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1,10 +1,10 @@ { "aci": { - "hash": "sha256-f4hgHFJgRUG+mhRgD7GMtkXoYkzAbkxxMIzvGLS0ums=", + "hash": "sha256-NS5q6ElCGEGSceOCIVudKE6m6EzXMV/3HGHHXwYopOA=", "homepage": "https://registry.terraform.io/providers/CiscoDevNet/aci", "owner": "CiscoDevNet", "repo": "terraform-provider-aci", - "rev": "v2.15.0", + "rev": "v2.16.0", "spdx": "MPL-2.0", "vendorHash": null }, From a4b3b9d9e62077600eb8fde6be8d91df5f20b303 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Sat, 19 Apr 2025 17:12:37 -0700 Subject: [PATCH 139/210] ueviewer: add missing deps --- pkgs/by-name/ue/ueviewer/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/ue/ueviewer/package.nix b/pkgs/by-name/ue/ueviewer/package.nix index 935c638d76e4..510184096cab 100644 --- a/pkgs/by-name/ue/ueviewer/package.nix +++ b/pkgs/by-name/ue/ueviewer/package.nix @@ -4,7 +4,9 @@ fetchFromGitHub, fetchpatch, unstableGitUpdater, + libGL, libpng, + libX11, perl, SDL2, zlib, @@ -62,6 +64,8 @@ gccStdenv.mkDerivation (finalAttrs: { zlib ] ++ lib.optionals (!gccStdenv.hostPlatform.isDarwin) [ + libGL + libX11 SDL2 ]; From d6c4fe748fa6bf7542606b746835a9f6d8ed1e8d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 18:04:49 +0000 Subject: [PATCH 140/210] airwindows: 0-unstable-2025-04-06 -> 0-unstable-2025-04-19 --- pkgs/by-name/ai/airwindows/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ai/airwindows/package.nix b/pkgs/by-name/ai/airwindows/package.nix index 3703b3b04c2d..3c57f2618ffd 100644 --- a/pkgs/by-name/ai/airwindows/package.nix +++ b/pkgs/by-name/ai/airwindows/package.nix @@ -8,13 +8,13 @@ }: stdenv.mkDerivation { pname = "airwindows"; - version = "0-unstable-2025-04-06"; + version = "0-unstable-2025-04-19"; src = fetchFromGitHub { owner = "airwindows"; repo = "airwindows"; - rev = "d109d6b9948449a883a9694d3f5aa8702a57f56b"; - hash = "sha256-4yXcPedz5wYqAiLyF5Cgc/DH4jjfJGSLv4qDyIJW4x0="; + rev = "9e38c7af2c4b74e4a1f138ebaccc07e5800c73b8"; + hash = "sha256-/6Z+CTrUeH3wNlwlP3aS5scYjhC0NwC0QXe+IMvphkc="; }; # we patch helpers because honestly im spooked out by where those variables From 6208b0b64f17aeac452dd8331df1d6941991991d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 18:57:29 +0000 Subject: [PATCH 141/210] sqldef: 1.0.5 -> 1.0.6 --- pkgs/by-name/sq/sqldef/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sq/sqldef/package.nix b/pkgs/by-name/sq/sqldef/package.nix index bfcda6373cb3..be534ee31cd1 100644 --- a/pkgs/by-name/sq/sqldef/package.nix +++ b/pkgs/by-name/sq/sqldef/package.nix @@ -6,18 +6,18 @@ buildGoModule rec { pname = "sqldef"; - version = "1.0.5"; + version = "1.0.6"; src = fetchFromGitHub { owner = "sqldef"; repo = "sqldef"; rev = "v${version}"; - hash = "sha256-vwkvKOM8/57lzT6toLqaux3yJD6zYi+J5Ae1qhxnhEw="; + hash = "sha256-tCKJ0iX0cWWdw+RSH15KTVDEcrZhbfZg+dgt/swDSJE="; }; proxyVendor = true; - vendorHash = "sha256-+hpqhpkTPVRyr0b80NgSnHGPLO/ueVm4x4/uFrS9ATI="; + vendorHash = "sha256-1LpDM4XYV2k7d8vFx97AuZSVpClTvNU5ezXnbhOkkP0="; ldflags = [ "-s" From d86fe97ec8a5e42c1b318392f5b661fee88478da Mon Sep 17 00:00:00 2001 From: Kyle Xiao Date: Sat, 26 Apr 2025 15:18:26 -0400 Subject: [PATCH 142/210] file: patch to fix misclassification of some zip files --- ...-zip-files-are-misclassified-as-data.patch | 52 +++++++++++++++++++ pkgs/tools/misc/file/default.nix | 6 +++ 2 files changed, 58 insertions(+) create mode 100644 pkgs/tools/misc/file/PR-571-jschleus-Some-zip-files-are-misclassified-as-data.patch diff --git a/pkgs/tools/misc/file/PR-571-jschleus-Some-zip-files-are-misclassified-as-data.patch b/pkgs/tools/misc/file/PR-571-jschleus-Some-zip-files-are-misclassified-as-data.patch new file mode 100644 index 000000000000..62559b6f0363 --- /dev/null +++ b/pkgs/tools/misc/file/PR-571-jschleus-Some-zip-files-are-misclassified-as-data.patch @@ -0,0 +1,52 @@ +From 60b2032b96fc185b37fb0f2152e834efb2edad6e Mon Sep 17 00:00:00 2001 +From: Christos Zoulas +Date: Thu, 5 Dec 2024 19:41:12 +0000 +Subject: [PATCH] PR/571: jschleus: Some zip files are misclassified as data + +--- + magic/Magdir/archive | 25 +++++++++++++++---------- + 1 file changed, 15 insertions(+), 10 deletions(-) + +diff --git a/magic/Magdir/archive b/magic/Magdir/archive +index e6ff4570a..e560523cb 100644 +--- a/magic/Magdir/archive ++++ b/magic/Magdir/archive +@@ -1795,6 +1795,17 @@ + !:ext zip/cbz + + ++# Generic zip archives (Greg Roelofs, c/o zip-bugs@wkuvx1.wku.edu) ++# Next line excludes specialized formats: ++0 name zipgeneric ++>4 beshort x Zip archive data, at least ++!:mime application/zip ++>4 use zipversion ++>4 beshort x to extract ++>8 beshort x \b, compression method= ++>8 use zipcompression ++>0x161 string WINZIP \b, WinZIP self-extracting ++ + 0 string PK\003\004 + !:strength +1 + # IOS/IPadOS IPA file (Zip archive) +@@ -2132,17 +2143,11 @@ + >>>>>>(-6.l) search/9000 kmp.json Keyman Compiled Package File + !:mime application/vnd.keyman.kmp+zip + !:ext kmp ++>>>>>+4 default x ++>>>>>>0 use zipgeneric + +-# Generic zip archives (Greg Roelofs, c/o zip-bugs@wkuvx1.wku.edu) +-# Next line excludes specialized formats: + >>>>+4 default x +->>>>>4 beshort x Zip archive data, at least +-!:mime application/zip +->>>>>4 use zipversion +->>>>>4 beshort x to extract +->>>>>8 beshort x \b, compression method= +->>>>>8 use zipcompression +->>>>>0x161 string WINZIP \b, WinZIP self-extracting ++>>>>>0 use zipgeneric + + # Zip archives (Greg Roelofs, c/o zip-bugs@wkuvx1.wku.edu) + 0 string PK\005\006 Zip archive data (empty) diff --git a/pkgs/tools/misc/file/default.nix b/pkgs/tools/misc/file/default.nix index 40becb915e1f..4059809a882c 100644 --- a/pkgs/tools/misc/file/default.nix +++ b/pkgs/tools/misc/file/default.nix @@ -26,6 +26,12 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-ycx3x8VgxUMTXtxVWvYJ1WGdvvARmX6YjOQKPXXYYIg="; }; + patches = [ + # https://github.com/file/file/commit/60b2032b96fc185b37fb0f2152e834efb2edad6e + # Fix for misclassification of some zip files + ./PR-571-jschleus-Some-zip-files-are-misclassified-as-data.patch + ]; + outputs = [ "out" "dev" From f27d43e1e4148ce6ff117a2d72c52076ba832118 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 10 Apr 2025 17:30:48 +0000 Subject: [PATCH 143/210] b3sum: 1.8.0 -> 1.8.2 --- pkgs/by-name/b3/b3sum/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/b3/b3sum/package.nix b/pkgs/by-name/b3/b3sum/package.nix index 31088ea5fd1a..34c6d912572c 100644 --- a/pkgs/by-name/b3/b3sum/package.nix +++ b/pkgs/by-name/b3/b3sum/package.nix @@ -6,15 +6,15 @@ rustPlatform.buildRustPackage rec { pname = "b3sum"; - version = "1.8.0"; + version = "1.8.2"; src = fetchCrate { inherit version pname; - hash = "sha256-FWblGKr/ZQsLZkPOax20FYEyoLiPREf7UjfOtFCljZU="; + hash = "sha256-/qyBs+t8n5I6uf1dSc3E0yHpdlUz77pvlqV5+r4dRBc="; }; useFetchCargoVendor = true; - cargoHash = "sha256-vSxAG0CKtTHZ/3fSDtZqmqvfY+swDBBPZ8YZP1Vlj0w="; + cargoHash = "sha256-PKVDfBFWQY95FxJ66vl6E26GEZChNCsA3ST++iieYSM="; meta = { description = "BLAKE3 cryptographic hash function"; From 9b3a1dcaac8e34d0ce715a6496c48249b2ac9fb1 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 20:55:17 +0000 Subject: [PATCH 144/210] vscode-extensions.asvetliakov.vscode-neovim: 1.18.19 -> 1.18.20 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index f681d3e44b21..e7f36860d18f 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -410,8 +410,8 @@ let mktplcRef = { name = "vscode-neovim"; publisher = "asvetliakov"; - version = "1.18.19"; - hash = "sha256-JGyyvDZQmlVGwEwQHh+82yK7uSrtt/HBaWHzbiGJ614="; + version = "1.18.20"; + hash = "sha256-g3rRdFjbxrp9y/dVhj/2GUJvDbG92VGq/jPtlLXV2kM="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/asvetliakov.vscode-neovim/changelog"; From b7bd3ea6aea8700eb9b36b85daa9bf0cf71c2a45 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 20:56:04 +0000 Subject: [PATCH 145/210] vscode-extensions.banacorn.agda-mode: 0.5.5 -> 0.5.6 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index e7f36860d18f..3fa14a166bf6 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -492,8 +492,8 @@ let mktplcRef = { publisher = "banacorn"; name = "agda-mode"; - version = "0.5.5"; - hash = "sha256-xz+KO743jGziLzO7pINTcOX9JV68MJ0juDl+rpr9hk8="; + version = "0.5.6"; + hash = "sha256-FKcPJzdhK0QbaG3wBkdGOkiDkZ4qVJh3RBTnD4wLIh8="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/banacorn.agda-mode/changelog"; From 55fdae78b117aef7377279765d30060016caadf1 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 20:56:42 +0000 Subject: [PATCH 146/210] vscode-extensions.betterthantomorrow.calva: 2.0.501 -> 2.0.502 --- .../vscode/extensions/betterthantomorrow.calva/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/betterthantomorrow.calva/default.nix b/pkgs/applications/editors/vscode/extensions/betterthantomorrow.calva/default.nix index d28ceead515b..03cc504645f4 100644 --- a/pkgs/applications/editors/vscode/extensions/betterthantomorrow.calva/default.nix +++ b/pkgs/applications/editors/vscode/extensions/betterthantomorrow.calva/default.nix @@ -10,8 +10,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "calva"; publisher = "betterthantomorrow"; - version = "2.0.501"; - hash = "sha256-j/WCtyrBc/D37kcjzJ/TVrqXSh9EzDoAe18mYXs43fk="; + version = "2.0.502"; + hash = "sha256-TEU1+8IUz0GqWoB2DSE+TzyHFLL0nMSMiZyzWD6IoEA="; }; nativeBuildInputs = [ jq From d921438489cfd28ee7edefaba9f691c23dc9d4f0 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 20:58:24 +0000 Subject: [PATCH 147/210] vscode-extensions.bradlc.vscode-tailwindcss: 0.14.15 -> 0.14.16 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 3fa14a166bf6..025c35bb55e8 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -785,8 +785,8 @@ let mktplcRef = { name = "vscode-tailwindcss"; publisher = "bradlc"; - version = "0.14.15"; - hash = "sha256-BJKPAyXBHX9W0pSxtri67PFL1zA4Vd2OMFfWi5bDnYQ="; + version = "0.14.16"; + hash = "sha256-U2oZSIsLpqEqYBIEjSnIToEOOnTCUi4vR6XwjnNUDN8="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/bradlc.vscode-tailwindcss/changelog"; From 7d138520d881e0a702a54d92de6d1ab3eafd1872 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:00:19 +0000 Subject: [PATCH 148/210] vscode-extensions.coder.coder-remote: 1.7.1 -> 1.8.0 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 025c35bb55e8..bba1c503cc20 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -1015,8 +1015,8 @@ let mktplcRef = { name = "coder-remote"; publisher = "coder"; - version = "1.7.1"; - hash = "sha256-egtB8mF9bbGb5YJ2pS9uGMzLmJcHAZ7UTswrn6k2k3A="; + version = "1.8.0"; + hash = "sha256-zAe2IFT69oZ/OLVSaaY5lGSiF/7FGiQngz/EXekwQtM="; }; meta = { description = "Extension for Visual Studio Code to open any Coder workspace in VS Code with a single click"; From 5d169e1d257b3d8d34dc4bf5ddc9b00cc55800d7 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:01:14 +0000 Subject: [PATCH 149/210] vscode-extensions.cweijan.vscode-database-client2: 8.2.5 -> 8.2.7 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index bba1c503cc20..e6948096e5a4 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -1178,8 +1178,8 @@ let mktplcRef = { name = "vscode-database-client2"; publisher = "cweijan"; - version = "8.2.5"; - hash = "sha256-t6+LLLGuh67cuvGzv9+ic7AFqQU+bxDc6UByJM0OF7s="; + version = "8.2.7"; + hash = "sha256-RH+nqLiT5atyTC9WMFpY5ARTolK8+d1VZJY8oHK1G7E="; }; meta = { description = "Database Client For Visual Studio Code"; From 4a6629f2c18d7faedcf54375820b5ccebe2e684b Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:01:35 +0000 Subject: [PATCH 150/210] vscode-extensions.danielsanmedium.dscodegpt: 3.10.84 -> 3.11.24 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index e6948096e5a4..57c0f807b2bc 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -1207,8 +1207,8 @@ let mktplcRef = { publisher = "DanielSanMedium"; name = "dscodegpt"; - version = "3.10.84"; - hash = "sha256-s7Zo8zRZ4nsEuoSPwQL3osRs5zlmbcEsCjIJ8janhPs="; + version = "3.11.24"; + hash = "sha256-bQf8kr4wvbUk+IMdoevBqZxTKg81uKlQO9yD6xJd1TM="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/DanielSanMedium.dscodegpt/changelog"; From 8da2ae0ac26863a3c01cc13ad68d7507afed0b6a Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:02:12 +0000 Subject: [PATCH 151/210] vscode-extensions.databricks.databricks: 2.9.2 -> 2.9.4 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 57c0f807b2bc..e6066b86dd8d 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -1259,8 +1259,8 @@ let mktplcRef = { name = "databricks"; publisher = "databricks"; - version = "2.9.2"; - hash = "sha256-lGVp/pkYQFqCa1fCEydrNke1yRxUmTRaaN+giuLdISQ="; + version = "2.9.4"; + hash = "sha256-6BSwkK6/YbCFci0p8aox8E9KP2M1daj3bu4qBxjybUE="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/databricks.databricks/changelog"; From 2b22089c988abb578c28d87e3eb32030996b1847 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:04:05 +0000 Subject: [PATCH 152/210] vscode-extensions.discloud.discloud: 2.22.42 -> 2.22.45 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index e6066b86dd8d..33189090a9b3 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -1486,8 +1486,8 @@ let mktplcRef = { publisher = "discloud"; name = "discloud"; - version = "2.22.42"; - hash = "sha256-jIjRMQ279KK8BxcQWWzcRcwfhkTg8W4aGUwqijje7ZY="; + version = "2.22.45"; + hash = "sha256-5nTNidm/oR1CazYXJfb6pKKXS5CSo3UUuW3xDp6yYGk="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/discloud.discloud/changelog"; From 4e27710b5b3c552d8961c8fd7a17a5b5950a6f56 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 21:04:45 +0000 Subject: [PATCH 153/210] kubernetes-polaris: 9.6.1 -> 9.6.3 --- pkgs/by-name/ku/kubernetes-polaris/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ku/kubernetes-polaris/package.nix b/pkgs/by-name/ku/kubernetes-polaris/package.nix index 27027d2bbefd..fe4f9a2e23cc 100644 --- a/pkgs/by-name/ku/kubernetes-polaris/package.nix +++ b/pkgs/by-name/ku/kubernetes-polaris/package.nix @@ -7,16 +7,16 @@ buildGoModule rec { pname = "kubernetes-polaris"; - version = "9.6.1"; + version = "9.6.3"; src = fetchFromGitHub { owner = "FairwindsOps"; repo = "polaris"; rev = version; - sha256 = "sha256-/pj52K33IimsnrSoSRhHy+WgzzRwGZQiBsNf1+L1B3c="; + sha256 = "sha256-g7qttmh5iYCtDvt3YW5aECpbpNsG7fC9itODsD40q+w="; }; - vendorHash = "sha256-l6RCHi4QLPLoF6+Wgcc/lvtBnQDQo0Gncc8VVkcnFBY="; + vendorHash = "sha256-yDR2eY/idL4Realr84iLMA2P9SoALP3/4V+Dvd4j6Ow="; nativeBuildInputs = [ installShellFiles ]; From ad97effbe84381f5543a48e6007655fb9f19f249 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:06:52 +0000 Subject: [PATCH 154/210] vscode-extensions.foam.foam-vscode: 0.26.10 -> 0.26.11 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 33189090a9b3..a91a712f163b 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -1918,8 +1918,8 @@ let mktplcRef = { name = "foam-vscode"; publisher = "foam"; - version = "0.26.10"; - hash = "sha256-vhQtdc0553TyPkQnTHwg7Nr+UbDMf9yR+2jj40ANPdQ="; + version = "0.26.11"; + hash = "sha256-tq4Woc4+vBVWox1ldTmJQJG/NGQPDAVEi+rviFEbVt0="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/foam.foam-vscode/changelog"; From 56f99d040dedca99ba35d86619dd0f61844bc3b7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 21:32:51 +0000 Subject: [PATCH 155/210] libretro.nestopia: 0-unstable-2025-03-22 -> 0-unstable-2025-04-24 --- pkgs/applications/emulators/libretro/cores/nestopia.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/nestopia.nix b/pkgs/applications/emulators/libretro/cores/nestopia.nix index 9ec7d0031f50..7ae7303c7cad 100644 --- a/pkgs/applications/emulators/libretro/cores/nestopia.nix +++ b/pkgs/applications/emulators/libretro/cores/nestopia.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "nestopia"; - version = "0-unstable-2025-03-22"; + version = "0-unstable-2025-04-24"; src = fetchFromGitHub { owner = "libretro"; repo = "nestopia"; - rev = "b3eb368603cd519d54bb4886d2934ee4fd188081"; - hash = "sha256-gaMZEP+8vCb/b9lhrXcUK4N7v9uxX/FVgnzK48rxyHQ="; + rev = "d2eefab298b0b9152d2934d6f0227b6803c877b3"; + hash = "sha256-lmfyNi+E2SoCOAtXuJ3F5S3mm1OCta9FHtoqPpLgYk8="; }; makefile = "Makefile"; From b4bd495f8a2fb4db5e830dd669ba5d090e189586 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 21:40:56 +0000 Subject: [PATCH 156/210] libretro.beetle-pce-fast: 0-unstable-2025-03-28 -> 0-unstable-2025-04-18 --- .../emulators/libretro/cores/beetle-pce-fast.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/beetle-pce-fast.nix b/pkgs/applications/emulators/libretro/cores/beetle-pce-fast.nix index c9911c347d1b..c731d9bc3535 100644 --- a/pkgs/applications/emulators/libretro/cores/beetle-pce-fast.nix +++ b/pkgs/applications/emulators/libretro/cores/beetle-pce-fast.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "mednafen-pce-fast"; - version = "0-unstable-2025-03-28"; + version = "0-unstable-2025-04-18"; src = fetchFromGitHub { owner = "libretro"; repo = "beetle-pce-fast-libretro"; - rev = "4ee33ff536f14295c178a037f9b5d5a960ce3c6f"; - hash = "sha256-ZL+aV469RHp5SSBFmK0q+1h2MdcM1q+TZu5Rrv/N0DU="; + rev = "baa35513545b011faa8b0b5db334d24ba15539ed"; + hash = "sha256-jEvbHCK9AB4u3raWbAivscHqBiH9s+RkgExTVW1yvnk="; }; makefile = "Makefile"; From ed21fe6997aac27babb5757edbba34b5ad4183ea Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:08:59 +0000 Subject: [PATCH 157/210] vscode-extensions.gitlab.gitlab-workflow: 6.11.0 -> 6.12.0 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index a91a712f163b..3a5197eff5dc 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -2187,8 +2187,8 @@ let mktplcRef = { name = "gitlab-workflow"; publisher = "gitlab"; - version = "6.11.0"; - hash = "sha256-4fzjJKj4RGzqD+ionUA2Al7UGv5aJNCo8O1JOnS+nqY="; + version = "6.12.0"; + hash = "sha256-0Pka2v2nXMfRD3TCiVAfLaxEhpQml9R/6Lg3/tk03zQ="; }; meta = { description = "GitLab extension for Visual Studio Code"; From 01bfb96ea0266c7f5a17849246fbb48ea96e9dd8 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:09:08 +0000 Subject: [PATCH 158/210] vscode-extensions.gleam.gleam: 2.11.1 -> 2.12.0 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 3a5197eff5dc..9258bfbb4be0 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -2203,8 +2203,8 @@ let mktplcRef = { name = "gleam"; publisher = "gleam"; - version = "2.11.1"; - hash = "sha256-tySY6vPg71QQKeKivCoJzcAH73nML/NWhtr+TgaSKRg="; + version = "2.12.0"; + hash = "sha256-kAs3+ecfMl2IcL+I4TXhbzq55AbHZ9NiQLhK6Eg+iZI="; }; meta = { description = "Support for the Gleam programming language"; From 6668bb3a57ea7293ca489aba50522fb305fa6696 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 21:51:06 +0000 Subject: [PATCH 159/210] simplex-chat-desktop: 6.3.2 -> 6.3.3 --- pkgs/by-name/si/simplex-chat-desktop/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/si/simplex-chat-desktop/package.nix b/pkgs/by-name/si/simplex-chat-desktop/package.nix index f01f9147c548..a50dc340db95 100644 --- a/pkgs/by-name/si/simplex-chat-desktop/package.nix +++ b/pkgs/by-name/si/simplex-chat-desktop/package.nix @@ -7,11 +7,11 @@ let pname = "simplex-chat-desktop"; - version = "6.3.2"; + version = "6.3.3"; src = fetchurl { url = "https://github.com/simplex-chat/simplex-chat/releases/download/v${version}/simplex-desktop-x86_64.AppImage"; - hash = "sha256-zGF8K0Dqi79EYq8UptwD9kAvsuzdvdGrRxuS3z0Ve/c="; + hash = "sha256-qm0JPwHnfICCUN5mgSrKH8V6orJ4+p/9UmrQ/GPWIBo="; }; appimageContents = appimageTools.extract { From 680221b320435db08dac77d30faea616501eb129 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 22:09:43 +0000 Subject: [PATCH 160/210] libretro.puae: 0-unstable-2025-04-15 -> 0-unstable-2025-04-22 --- pkgs/applications/emulators/libretro/cores/puae.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/puae.nix b/pkgs/applications/emulators/libretro/cores/puae.nix index 1d1b91d8dabf..a622395fa399 100644 --- a/pkgs/applications/emulators/libretro/cores/puae.nix +++ b/pkgs/applications/emulators/libretro/cores/puae.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "puae"; - version = "0-unstable-2025-04-15"; + version = "0-unstable-2025-04-22"; src = fetchFromGitHub { owner = "libretro"; repo = "libretro-uae"; - rev = "0faf39cfd84e114d985e020562e75c22b4bc1569"; - hash = "sha256-eJnCHei0/SdJD33SGsRgUL1+IapcvX/FcxHDlYmkob0="; + rev = "7dd724eaa48f05f02d9d2f1bfa131c34b6ab5351"; + hash = "sha256-i046+gZa8u/nmGGlF/uA2Lz5VZJTgwXz9aK2C/2l470="; }; makefile = "Makefile"; From 96ebf4bf5c4c504366e1118182cebd1d27eae74f Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:10:07 +0000 Subject: [PATCH 161/210] vscode-extensions.hashicorp.terraform: 2.19.0 -> 2.34.3 --- .../hashicorp.terraform/default.nix | 9 ++++----- .../fix-terraform-ls.patch | 19 ------------------- 2 files changed, 4 insertions(+), 24 deletions(-) delete mode 100644 pkgs/applications/editors/vscode/extensions/hashicorp.terraform/fix-terraform-ls.patch diff --git a/pkgs/applications/editors/vscode/extensions/hashicorp.terraform/default.nix b/pkgs/applications/editors/vscode/extensions/hashicorp.terraform/default.nix index b2c61f1b0867..d6a72f85ceef 100644 --- a/pkgs/applications/editors/vscode/extensions/hashicorp.terraform/default.nix +++ b/pkgs/applications/editors/vscode/extensions/hashicorp.terraform/default.nix @@ -7,14 +7,13 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "terraform"; publisher = "hashicorp"; - version = "2.19.0"; - hash = "sha256-k/fcEJuELz0xkwivSrP6Nxtz861BLq1wR2ZDMXVrvkY="; + version = "2.34.3"; + hash = "sha256-kE9xH0cp741aCqhrwFDW+lQxOAsdLNzCCOTWMxd+li0="; }; - patches = [ ./fix-terraform-ls.patch ]; - postPatch = '' - substituteInPlace out/serverPath.js --replace TERRAFORM-LS-PATH ${terraform-ls}/bin/terraform-ls + substituteInPlace dist/extension.js \ + --replace-fail 'this.customBinPath=Ga("terraform").get("languageServer.path")' 'this.customBinPath = Ga("terraform").get("languageServer.path") || '${terraform-ls}/bin/terraform-ls';' ''; meta = { diff --git a/pkgs/applications/editors/vscode/extensions/hashicorp.terraform/fix-terraform-ls.patch b/pkgs/applications/editors/vscode/extensions/hashicorp.terraform/fix-terraform-ls.patch deleted file mode 100644 index e2dcd0b70aa9..000000000000 --- a/pkgs/applications/editors/vscode/extensions/hashicorp.terraform/fix-terraform-ls.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff --git a/out/serverPath.js b/out/serverPath.js -index fafa915..2e6d376 100644 ---- a/out/serverPath.js -+++ b/out/serverPath.js -@@ -18,7 +18,13 @@ exports.CUSTOM_BIN_PATH_OPTION_NAME = 'languageServer.pathToBinary'; - class ServerPath { - constructor(context) { - this.context = context; -- this.customBinPath = vscode.workspace.getConfiguration('terraform').get(exports.CUSTOM_BIN_PATH_OPTION_NAME); -+ -+ const customBinPath = vscode.workspace.getConfiguration('terraform').get(exports.CUSTOM_BIN_PATH_OPTION_NAME); -+ if (!customBinPath) { -+ this.customBinPath = 'TERRAFORM-LS-PATH'; -+ } else { -+ this.customBinPath = customBinPath; -+ } - } - installPath() { - return path.join(this.context.globalStorageUri.fsPath, INSTALL_FOLDER_NAME); From 702380e7bc320fd4b527bffcca024f2c03a42dc5 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:15:06 +0000 Subject: [PATCH 162/210] vscode-extensions.lapo.asn1js: 0.2.1 -> 0.2.2 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 9258bfbb4be0..9f40ad5c561f 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -3017,8 +3017,8 @@ let mktplcRef = { name = "asn1js"; publisher = "lapo"; - version = "0.2.1"; - hash = "sha256-/75tsueW1PQIHN6YOLajREcMbRnzxzBIGnd7LGAxwBs="; + version = "0.2.2"; + hash = "sha256-U1mvxDqyNbTalKgxtCLxLOMT3ZxVGC2KXWW47khtQKA="; }; meta = { description = "Decode ASN.1 content inside VSCode"; From ec73d50212b47d92efbd22baeab3f097e54b64b3 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:21:01 +0000 Subject: [PATCH 163/210] vscode-extensions.ms-vsliveshare.vsliveshare: 1.0.5918 -> 1.0.5948 --- .../extensions/ms-vsliveshare.vsliveshare/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/ms-vsliveshare.vsliveshare/default.nix b/pkgs/applications/editors/vscode/extensions/ms-vsliveshare.vsliveshare/default.nix index 180490e60a65..9fa2297a6f13 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-vsliveshare.vsliveshare/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-vsliveshare.vsliveshare/default.nix @@ -8,12 +8,12 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "vsliveshare"; publisher = "ms-vsliveshare"; - version = "1.0.5918"; - hash = "sha256-Tk0mKydUF8M7l7NC9wEA7t2rzJWy/mq4/HvIHI2/ldQ="; + version = "1.0.5948"; + hash = "sha256-KOu9zF5l6MTLU8z/l4xBwRl2X3uIE15YgHEZJrKSHGY="; }; postPatch = '' - substituteInPlace extension.js \ + substituteInPlace vendor.js \ --replace-fail '"xsel"' '"${xsel}/bin/xsel"' ''; From 76c39b8827fb45a4a485923cff5beb42f335e69d Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:24:08 +0000 Subject: [PATCH 164/210] vscode-extensions.redhat.ansible: 25.3.1 -> 25.4.0 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 9f40ad5c561f..0971a10e65ef 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -4065,8 +4065,8 @@ let mktplcRef = { name = "ansible"; publisher = "redhat"; - version = "25.3.1"; - hash = "sha256-1w4B5+WHDJzU4Fz5x2pXDAssRWjZPl79ykTNbk2rQXo="; + version = "25.4.0"; + hash = "sha256-E/BogNtax4dkv6hlYcaRinTxr4jnVyV9hVCdkIkul9s="; }; meta = { description = "Ansible language support"; From 210dc9e5f9e61432c30dba1550066a5e3709bc6c Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:25:08 +0000 Subject: [PATCH 165/210] vscode-extensions.rooveterinaryinc.roo-cline: 3.13.2 -> 3.14.3 --- .../vscode/extensions/rooveterinaryinc.roo-cline/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix b/pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix index 5dde4c8392ed..aaa8f380da6b 100644 --- a/pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix +++ b/pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix @@ -8,8 +8,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { publisher = "RooVeterinaryInc"; name = "roo-cline"; - version = "3.13.2"; - hash = "sha256-ezmBS84RonkqlguLcgGZa4663GpY6yReKKb+r6YzQms="; + version = "3.14.3"; + hash = "sha256-hYtjcxlHwtvESs08WdWuMGi10LIvdH5SEBeAI7ah8oc="; }; passthru.updateScript = vscode-extension-update-script { }; From efd1d594c61a0f98c63b560d716fd8cb5a9b748a Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:26:08 +0000 Subject: [PATCH 166/210] vscode-extensions.saoudrizwan.claude-dev: 3.12.3 -> 3.13.3 --- .../vscode/extensions/saoudrizwan.claude-dev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix b/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix index 70705435b3fc..8b972e5241f7 100644 --- a/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix +++ b/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix @@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "claude-dev"; publisher = "saoudrizwan"; - version = "3.12.3"; - hash = "sha256-HluLBJe7v21vViI7NcbmrXpE/ZBserW4eAvab5swjyQ="; + version = "3.13.3"; + hash = "sha256-N7y0+WeP0zgWRBD2LqLR++dQty9wbaqA+vWQYsaGo2k="; }; meta = { From e30ff63f1d1d4593c03c8a617d1ee4f0f58783ab Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 22:21:14 +0000 Subject: [PATCH 167/210] libretro.beetle-psx: 0-unstable-2025-04-11 -> 0-unstable-2025-04-18 --- pkgs/applications/emulators/libretro/cores/beetle-psx.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/beetle-psx.nix b/pkgs/applications/emulators/libretro/cores/beetle-psx.nix index aa13b32ebbf2..746cb598e41f 100644 --- a/pkgs/applications/emulators/libretro/cores/beetle-psx.nix +++ b/pkgs/applications/emulators/libretro/cores/beetle-psx.nix @@ -8,13 +8,13 @@ }: mkLibretroCore { core = "mednafen-psx" + lib.optionalString withHw "-hw"; - version = "0-unstable-2025-04-11"; + version = "0-unstable-2025-04-18"; src = fetchFromGitHub { owner = "libretro"; repo = "beetle-psx-libretro"; - rev = "5d2137e5f15db3b52583e8246bcf2669cebb147b"; - hash = "sha256-Gu5rubuNsMWOCNaNrqRR/hoErmhYdGC+9o/xDXuaWuM="; + rev = "4e0cb4ddf0c52ef802cd4f7f2b7d3a187ab9962d"; + hash = "sha256-XjJf/EPgJmbxGPJl2SEoVA47iRzjSKISt/3rmW5Wysg="; }; extraBuildInputs = lib.optionals withHw [ From 6d3e5dce5d1d3305fa3c02bca3e94b94445e4bcb Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:28:14 +0000 Subject: [PATCH 168/210] vscode-extensions.sourcery.sourcery: 1.28.0 -> 1.35.0 --- .../vscode/extensions/sourcery.sourcery/default.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/sourcery.sourcery/default.nix b/pkgs/applications/editors/vscode/extensions/sourcery.sourcery/default.nix index 979472c9232e..cadb4311e265 100644 --- a/pkgs/applications/editors/vscode/extensions/sourcery.sourcery/default.nix +++ b/pkgs/applications/editors/vscode/extensions/sourcery.sourcery/default.nix @@ -10,16 +10,10 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "sourcery"; publisher = "sourcery"; - version = "1.28.0"; - hash = "sha256-wQt2T7RhQ5qU4P7J0vQwzc9mL40pDY5tS0HILhy4twg="; + version = "1.35.0"; + hash = "sha256-3+8kzQ+DZVysv0wYc3uM+8Z6jACgxCKNcZVJ2LOlodo="; }; - postPatch = '' - pushd sourcery_binaries/install - rm -r win ${if stdenv.hostPlatform.isLinux then "mac" else "linux"} - popd - ''; - nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ autoPatchelfHook ]; buildInputs = [ From 0b104bf67bc50552ec2b5f9c2576276c881dd9b0 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:28:55 +0000 Subject: [PATCH 169/210] vscode-extensions.streetsidesoftware.code-spell-checker: 4.0.45 -> 4.0.47 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 0971a10e65ef..d06b038b8377 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -4649,8 +4649,8 @@ let mktplcRef = { publisher = "streetsidesoftware"; name = "code-spell-checker"; - version = "4.0.45"; - hash = "sha256-2goKjykQMLTRPP9Y0aBXLu3qDlhEKO00x82C18nKlIY="; + version = "4.0.47"; + hash = "sha256-g9r8I909ge44JfBRm1JBHFluXr9H8zl0ERqkwoxtQaI="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/streetsidesoftware.code-spell-checker/changelog"; From ce55441da90c0516333c69de5c3a2c90c11018e8 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:29:24 +0000 Subject: [PATCH 170/210] vscode-extensions.sumneko.lua: 3.7.3 -> 3.14.0 --- .../vscode/extensions/sumneko.lua/default.nix | 9 ++++++--- .../extensions/sumneko.lua/remove-chmod.patch | 14 -------------- 2 files changed, 6 insertions(+), 17 deletions(-) delete mode 100644 pkgs/applications/editors/vscode/extensions/sumneko.lua/remove-chmod.patch diff --git a/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix b/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix index 3f27cb681fe0..74335cb55a40 100644 --- a/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix +++ b/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix @@ -8,13 +8,16 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "lua"; publisher = "sumneko"; - version = "3.7.3"; - hash = "sha256-JsZrCeT843QvQkebyOVlO9MI2xbEQI8xX0DrPacfGrM="; + version = "3.14.0"; + hash = "sha256-auXQudzWRbq/cXMpFkheqHhJMu7XwacdsaZYAkv1pQs="; }; # Running chmod in runtime will lock up extension # indefinitely if the binary is in nix store. - patches = [ ./remove-chmod.patch ]; + postPatch = '' + substituteInPlace client/out/src/languageserver.js \ + --replace-fail 'await fs.promises.chmod(command, "777");' "" + ''; postInstall = '' ln -sf ${lua-language-server}/bin/lua-language-server \ diff --git a/pkgs/applications/editors/vscode/extensions/sumneko.lua/remove-chmod.patch b/pkgs/applications/editors/vscode/extensions/sumneko.lua/remove-chmod.patch deleted file mode 100644 index bce7a6dae146..000000000000 --- a/pkgs/applications/editors/vscode/extensions/sumneko.lua/remove-chmod.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- a/client/out/languageserver.js -+++ b/client/out/languageserver.js -@@ -164,11 +164,9 @@ class LuaClient extends vscode_1.Disposable { - break; - case "linux": - command = this.context.asAbsolutePath(path.join("server", binDir ? binDir : "bin-Linux", "lua-language-server")); -- yield fs.promises.chmod(command, "777"); - break; - case "darwin": - command = this.context.asAbsolutePath(path.join("server", binDir ? binDir : "bin-macOS", "lua-language-server")); -- yield fs.promises.chmod(command, "777"); - break; - default: - throw new Error(`Unsupported operating system "${platform}"!`); From e97b9eb9b5aeb2f8841e0652ba24c010be3bcb46 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:29:53 +0000 Subject: [PATCH 171/210] vscode-extensions.tabnine.tabnine-vscode: 3.259.0 -> 3.260.0 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index d06b038b8377..1d24f1fea273 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -4759,8 +4759,8 @@ let mktplcRef = { name = "tabnine-vscode"; publisher = "tabnine"; - version = "3.259.0"; - hash = "sha256-BhJskqQr222VA6Sf7okttUIeYpsi99IyXJIOOWZKQ9M="; + version = "3.260.0"; + hash = "sha256-Ve9PGpsqc7q5wCu62X0I5xJsQJ0xAJKN6VNi6HfWNDk="; }; meta = { license = lib.licenses.mit; From 3de4043a4feb1499a375fec6ec6ff1361be77e6b Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:32:36 +0000 Subject: [PATCH 172/210] vscode-extensions.unifiedjs.vscode-mdx: 1.8.13 -> 1.8.14 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 1d24f1fea273..55eb08819f8e 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -5086,8 +5086,8 @@ let mktplcRef = { name = "vscode-mdx"; publisher = "unifiedjs"; - version = "1.8.13"; - hash = "sha256-QTIDs+HVnM+zJ3jqhiBhUTsrI44kaHInYDXLXMC1/9E="; + version = "1.8.14"; + hash = "sha256-kIQPvmLkqZa3jPxIfJ3LDyIvr5yXQTsO7uzzvFa9EJM="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/unifiedjs.vscode-mdx/changelog"; From eb8c869abcc4494223791362800ebe154f988b2b Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:33:23 +0000 Subject: [PATCH 173/210] vscode-extensions.visualjj.visualjj: 0.14.4 -> 0.14.5 --- .../vscode/extensions/visualjj.visualjj/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/visualjj.visualjj/default.nix b/pkgs/applications/editors/vscode/extensions/visualjj.visualjj/default.nix index a66e90adf7dd..c817cb726ffc 100644 --- a/pkgs/applications/editors/vscode/extensions/visualjj.visualjj/default.nix +++ b/pkgs/applications/editors/vscode/extensions/visualjj.visualjj/default.nix @@ -11,26 +11,26 @@ vscode-utils.buildVscodeMarketplaceExtension { sources = { "x86_64-linux" = { arch = "linux-x64"; - hash = "sha256-Sno0UnWnuOogT9DMEF+8dMZLqxAoHSsKORkHpre40dE="; + hash = "sha256-70IC1Df7FxIbh9iFPqC7ej+NpAW8BKD30qYlhtC0QLo="; }; "x86_64-darwin" = { arch = "darwin-x64"; - hash = "sha256-GaqBiAs0G9h1p2itDITPFBkFD1uOmM0fEp4tKmYFCXY="; + hash = "sha256-NA6QjtqtEWRHjs4s1F3tVnd+qwk3T7KAhZdNsCv2WXo="; }; "aarch64-linux" = { arch = "linux-arm64"; - hash = "sha256-uDRhsAGw7mEI2ztC8QWDtrHAeMwk9IzU5Sln7HQl+1Y="; + hash = "sha256-BIop7QBbJCRO5u81NMuRHcKtAHpPAWZFIApv7g/3pI8="; }; "aarch64-darwin" = { arch = "darwin-arm64"; - hash = "sha256-/5VEFXlGORo9t5ehDmLcqb0cYvJ6Gb1yIootyqpMZM8="; + hash = "sha256-mghcU1iyxlU1uY9tb4j5/qdy5TM+MFXN2ci95erzihg="; }; }; in { name = "visualjj"; publisher = "visualjj"; - version = "0.14.4"; + version = "0.14.5"; } // sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system ${stdenvNoCC.hostPlatform.system}"); From e0888e96f6ca4d8695bff4a10dcf3aed10699161 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:35:10 +0000 Subject: [PATCH 174/210] vscode-extensions.vue.volar: 2.2.8 -> 2.2.10 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 55eb08819f8e..48f5339c8bcd 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -5394,8 +5394,8 @@ let mktplcRef = { name = "volar"; publisher = "Vue"; - version = "2.2.8"; - hash = "sha256-efEeTq/y4al38Tdut3bHVdluf3tUYqc6CFPX+ch1gLg="; + version = "2.2.10"; + hash = "sha256-cQxDoKDfzifcGTkhS8rC+JUQofbxMfXmkJF1CwiU1nc="; }; meta = { changelog = "https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md"; From e2ba02f3930680266641b7265a627a98278222c6 Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:35:38 +0000 Subject: [PATCH 175/210] vscode-extensions.wakatime.vscode-wakatime: 25.0.0 -> 25.0.1 --- .../vscode/extensions/WakaTime.vscode-wakatime/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/WakaTime.vscode-wakatime/default.nix b/pkgs/applications/editors/vscode/extensions/WakaTime.vscode-wakatime/default.nix index cb46592d9f04..32528842c863 100644 --- a/pkgs/applications/editors/vscode/extensions/WakaTime.vscode-wakatime/default.nix +++ b/pkgs/applications/editors/vscode/extensions/WakaTime.vscode-wakatime/default.nix @@ -7,8 +7,8 @@ buildVscodeMarketplaceExtension { mktplcRef = { name = "vscode-wakatime"; publisher = "WakaTime"; - version = "25.0.0"; - hash = "sha256-n/7y2nbD+ziUCDmNbfuT01GK/ls8rTfghpntj6SmsbA="; + version = "25.0.1"; + hash = "sha256-4Q/38zO8G39oeZh4N9hOSFBeB0rI7ouH5vlBmV78EnQ="; }; meta = { From 7db5b4de546f20bc791900ab19dd7f929ddd916e Mon Sep 17 00:00:00 2001 From: emaryn Date: Sat, 26 Apr 2025 21:36:32 +0000 Subject: [PATCH 176/210] vscode-extensions.xdebug.php-debug: 1.35.0 -> 1.36.1 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 48f5339c8bcd..42a7195b25d5 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -5548,8 +5548,8 @@ let mktplcRef = { name = "php-debug"; publisher = "xdebug"; - version = "1.35.0"; - hash = "sha256-HQYxQPKirPCnje2lrOFprBG3ha7YaV5iytmeI8CTQJU="; + version = "1.36.1"; + hash = "sha256-4r3mf7q6n1b/cVYIGZyRNK5nEAJYzTz4cJrKNH+R01s="; }; meta = { description = "PHP Debug Adapter"; From 14676c19cfe11432bec126ff4d4b14d3dd7ea547 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 22:49:07 +0000 Subject: [PATCH 177/210] libretro.genesis-plus-gx: 0-unstable-2025-04-04 -> 0-unstable-2025-04-25 --- .../emulators/libretro/cores/genesis-plus-gx.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/genesis-plus-gx.nix b/pkgs/applications/emulators/libretro/cores/genesis-plus-gx.nix index f286c792d223..7304665ac245 100644 --- a/pkgs/applications/emulators/libretro/cores/genesis-plus-gx.nix +++ b/pkgs/applications/emulators/libretro/cores/genesis-plus-gx.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "genesis-plus-gx"; - version = "0-unstable-2025-04-04"; + version = "0-unstable-2025-04-25"; src = fetchFromGitHub { owner = "libretro"; repo = "Genesis-Plus-GX"; - rev = "32a4853c5fd352cc3054e83ed375476cf023aa5f"; - hash = "sha256-3r562/3WWWkibEKzPrA+lASY5Wpz8kuX5EQKqFKJdAA="; + rev = "99678a0ef3cfcca500ed01c24bbb1020d8af4c12"; + hash = "sha256-iijYZ4+TM61EkJynDaPYBi/bYrypouFRmhaG63cxgJo="; }; meta = { From af1cabb5a0b8d5d7f2390d8467f56184c5fd4533 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 22:54:12 +0000 Subject: [PATCH 178/210] libretro.gambatte: 0-unstable-2025-04-04 -> 0-unstable-2025-04-18 --- pkgs/applications/emulators/libretro/cores/gambatte.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/gambatte.nix b/pkgs/applications/emulators/libretro/cores/gambatte.nix index 2f28042aa697..ef8295c2866f 100644 --- a/pkgs/applications/emulators/libretro/cores/gambatte.nix +++ b/pkgs/applications/emulators/libretro/cores/gambatte.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "gambatte"; - version = "0-unstable-2025-04-04"; + version = "0-unstable-2025-04-18"; src = fetchFromGitHub { owner = "libretro"; repo = "gambatte-libretro"; - rev = "2910240a4100ccad68f935082b8bbce194673cb5"; - hash = "sha256-segz2SocZaNNgToNQOIEVIOD3CidyZIS81dStcdAsTs="; + rev = "b285b0823ac867371e72c54d5275a554c7be312c"; + hash = "sha256-/PFSMcx+iBpiMHSqAhGVjbXDkMk9En0UZPChPROaLck="; }; meta = { From dcfed7914b3892b08087c1245240d4d538c004fc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 26 Apr 2025 23:27:59 +0000 Subject: [PATCH 179/210] libvgm: 0-unstable-2025-04-05 -> 0-unstable-2025-04-06 --- pkgs/development/libraries/libvgm/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libvgm/default.nix b/pkgs/development/libraries/libvgm/default.nix index d3ba36cff93a..d3bd629b9e2d 100644 --- a/pkgs/development/libraries/libvgm/default.nix +++ b/pkgs/development/libraries/libvgm/default.nix @@ -40,13 +40,13 @@ assert enableTools -> enableAudio && enableEmulation && enableLibplayer; stdenv.mkDerivation (finalAttrs: { pname = "libvgm"; - version = "0-unstable-2025-04-05"; + version = "0-unstable-2025-04-06"; src = fetchFromGitHub { owner = "ValleyBell"; repo = "libvgm"; - rev = "4464b6d59f1afe99a0f7679dff50c5ada4a31654"; - hash = "sha256-btKg65haGhuz+xh4eWlujzUIhjjdUg9RelLX/ouLx68="; + rev = "0833b26bcda4fce9d870a22f2adb8e0cd525be22"; + hash = "sha256-7LdC4DA2quLCBBRO71sFubch4AeFyEEeXdXq9A6OK0M="; }; outputs = [ From 6153656eedead131d147387f7719c8f59c38f480 Mon Sep 17 00:00:00 2001 From: TomaSajt <62384384+TomaSajt@users.noreply.github.com> Date: Sun, 27 Apr 2025 01:37:51 +0200 Subject: [PATCH 180/210] ldmud: move to pkgs/by-name --- pkgs/{games => by-name/ld}/ldmud/libxml2-2.12.0-compat.patch | 0 pkgs/{games => by-name/ld}/ldmud/mysql-compat.patch | 0 .../{games/ldmud/default.nix => by-name/ld/ldmud/package.nix} | 1 - pkgs/top-level/all-packages.nix | 4 +--- 4 files changed, 1 insertion(+), 4 deletions(-) rename pkgs/{games => by-name/ld}/ldmud/libxml2-2.12.0-compat.patch (100%) rename pkgs/{games => by-name/ld}/ldmud/mysql-compat.patch (100%) rename pkgs/{games/ldmud/default.nix => by-name/ld/ldmud/package.nix} (99%) diff --git a/pkgs/games/ldmud/libxml2-2.12.0-compat.patch b/pkgs/by-name/ld/ldmud/libxml2-2.12.0-compat.patch similarity index 100% rename from pkgs/games/ldmud/libxml2-2.12.0-compat.patch rename to pkgs/by-name/ld/ldmud/libxml2-2.12.0-compat.patch diff --git a/pkgs/games/ldmud/mysql-compat.patch b/pkgs/by-name/ld/ldmud/mysql-compat.patch similarity index 100% rename from pkgs/games/ldmud/mysql-compat.patch rename to pkgs/by-name/ld/ldmud/mysql-compat.patch diff --git a/pkgs/games/ldmud/default.nix b/pkgs/by-name/ld/ldmud/package.nix similarity index 99% rename from pkgs/games/ldmud/default.nix rename to pkgs/by-name/ld/ldmud/package.nix index bdfff52c3e74..e024c7822a89 100644 --- a/pkgs/games/ldmud/default.nix +++ b/pkgs/by-name/ld/ldmud/package.nix @@ -24,7 +24,6 @@ openssl, pythonSupport ? false, python310, - ... }: stdenv.mkDerivation rec { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a19045092b6e..0625161fa7f1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17151,9 +17151,7 @@ with pkgs; useProprietaryAssets = false; }; - ldmud = callPackage ../games/ldmud { }; - - ldmud-full = callPackage ../games/ldmud { + ldmud-full = callPackage ../by-name/ld/ldmud/package.nix { ipv6Support = true; mccpSupport = true; mysqlSupport = true; From fccde8ef43b3655a11fac23a879380ccfc40d002 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Sun, 27 Apr 2025 02:50:49 +0200 Subject: [PATCH 181/210] python313Packages.pyeclib: 1.6.2 -> 1.6.4 Diff: https://github.com/openstack/pyeclib/compare/refs/tags/1.6.2...refs/tags/1.6.4 --- pkgs/development/python-modules/pyeclib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyeclib/default.nix b/pkgs/development/python-modules/pyeclib/default.nix index 36d8ae711ec9..ad378218b660 100644 --- a/pkgs/development/python-modules/pyeclib/default.nix +++ b/pkgs/development/python-modules/pyeclib/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "pyeclib"; - version = "1.6.2"; + version = "1.6.4"; pyproject = true; src = fetchFromGitHub { owner = "openstack"; repo = "pyeclib"; tag = version; - hash = "sha256-LZQNJU7QEoHo+RWvHnQkNxBg6t322u/c3PyBhy1eVZc="; + hash = "sha256-oRitXlQunfqLSKMaSW3E1BnL0otA4UPj/y6bbiN0kPM="; }; postPatch = '' From 28b0f0983580dab3b7e98ad88645845fa7dd36b8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 01:12:48 +0000 Subject: [PATCH 182/210] texmaker: 6.0.0 -> 6.0.1 --- pkgs/applications/editors/texmaker/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/texmaker/default.nix b/pkgs/applications/editors/texmaker/default.nix index fada79bc0f8d..10388a6d822d 100644 --- a/pkgs/applications/editors/texmaker/default.nix +++ b/pkgs/applications/editors/texmaker/default.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { pname = "texmaker"; - version = "6.0.0"; + version = "6.0.1"; src = fetchurl { url = "http://www.xm1math.net/texmaker/texmaker-${version}.tar.bz2"; - hash = "sha256-l3zlgOJcGrbgvD2hA74LQ+v2C4zg0nJzEE/df1hhd/w="; + hash = "sha256-uMI13wzY/XcUzXDTte42MWOwJUqd6pGAeBuPDi5GyvY="; }; buildInputs = [ From 39b9f28fe6b50aa5d095b480d96420aebf58acea Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Sun, 27 Apr 2025 03:16:25 +0200 Subject: [PATCH 183/210] python313Packages.nine: unbreak --- pkgs/development/python-modules/nine/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/nine/default.nix b/pkgs/development/python-modules/nine/default.nix index d5191719f774..b154b82c962f 100644 --- a/pkgs/development/python-modules/nine/default.nix +++ b/pkgs/development/python-modules/nine/default.nix @@ -2,18 +2,21 @@ lib, buildPythonPackage, fetchPypi, + poetry-core, }: buildPythonPackage rec { pname = "nine"; version = "1.2.0"; - format = "setuptools"; + pyproject = true; src = fetchPypi { inherit pname version; sha256 = "sha256-NSp9/hGVO39NEoqEeuAe50sdnfyVL4Lzyx8dvUHmbKk="; }; + build-system = [ poetry-core ]; + meta = with lib; { description = "Let's write Python 3 right now!"; homepage = "https://github.com/nandoflorestan/nine"; From f03efcbec3a0ee2ee4bfe98896e182d9008ce5b1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 03:03:54 +0000 Subject: [PATCH 184/210] vacuum-go: 0.16.5 -> 0.16.6 --- pkgs/by-name/va/vacuum-go/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/va/vacuum-go/package.nix b/pkgs/by-name/va/vacuum-go/package.nix index cc6819cad37b..e3fddf402ba9 100644 --- a/pkgs/by-name/va/vacuum-go/package.nix +++ b/pkgs/by-name/va/vacuum-go/package.nix @@ -7,17 +7,17 @@ buildGoModule (finalAttrs: { pname = "vacuum-go"; - version = "0.16.5"; + version = "0.16.6"; src = fetchFromGitHub { owner = "daveshanley"; repo = "vacuum"; # using refs/tags because simple version gives: 'the given path has multiple possibilities' error tag = "v${finalAttrs.version}"; - hash = "sha256-r42bmY7wmEjA2Q/k8czyyNpU59a4z6vxeCnIfMkMScg="; + hash = "sha256-20Ty0j0oRtMY6FLCCfu4o+qeDDMnjgEvUCUaWlqJ5dU="; }; - vendorHash = "sha256-1lr1VQU4JHg0PZbjAUmALFZJiYc+HTwrk0E/t/1qXqE="; + vendorHash = "sha256-ClocrabgCfizLVr+/O96qpiwAq7TxYB4uM9gtjeKbQA="; env.CGO_ENABLED = 0; ldflags = [ From 3cb40327744e62ac76cd156a6fec5a61a4e04b8a Mon Sep 17 00:00:00 2001 From: "Adam C. Stephens" Date: Tue, 8 Apr 2025 21:12:03 -0400 Subject: [PATCH 185/210] distrobuilder: 3.1 -> 3.2 https://discuss.linuxcontainers.org/t/distrobuilder-3-2-has-been-released/23385 Also rebased generator patch --- .../di/distrobuilder/nixos-generator.patch | 116 +++++++++++------- pkgs/by-name/di/distrobuilder/package.nix | 12 +- 2 files changed, 80 insertions(+), 48 deletions(-) diff --git a/pkgs/by-name/di/distrobuilder/nixos-generator.patch b/pkgs/by-name/di/distrobuilder/nixos-generator.patch index 7379274fa072..44e668dfb552 100644 --- a/pkgs/by-name/di/distrobuilder/nixos-generator.patch +++ b/pkgs/by-name/di/distrobuilder/nixos-generator.patch @@ -1,16 +1,16 @@ -diff --git a/distrobuilder/lxc.generator b/distrobuilder/lxc.generator -index dc5b506..0265da8 100644 ---- a/distrobuilder/lxc.generator -+++ b/distrobuilder/lxc.generator -@@ -21,16 +21,6 @@ is_incus_vm() { - [ -e /dev/virtio-ports/org.linuxcontainers.incus ] +diff --git c/distrobuilder/lxc.generator w/distrobuilder/lxc.generator +index 5f854d3..927f2df 100644 +--- c/distrobuilder/lxc.generator ++++ w/distrobuilder/lxc.generator +@@ -16,16 +16,6 @@ is_lxc_privileged_container() { + grep -qw 4294967295$ /proc/self/uid_map } -# is_in_path succeeds if the given file exists in on of the paths -is_in_path() { - # Don't use $PATH as that may not include all relevant paths - for path in /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin; do -- [ -e "${path}/$1" ] && return 0 +- [ -e "${path}/${1}" ] && return 0 - done - - return 1 @@ -19,21 +19,23 @@ index dc5b506..0265da8 100644 ## Fix functions # fix_ro_paths avoids udevd issues with /sys and /proc being writable fix_ro_paths() { -@@ -42,38 +32,6 @@ fix_ro_paths() { +@@ -47,41 +37,6 @@ fix_ro_run() { EOF } -# fix_nm_link_state forces the network interface to a DOWN state ahead of NetworkManager starting up -fix_nm_link_state() { -- [ -e "/sys/class/net/$1" ] || return 0 -- ip_path= -- if [ -f /sbin/ip ]; then -- ip_path=/sbin/ip -- elif [ -f /bin/ip ]; then -- ip_path=/bin/ip +- [ -e "/sys/class/net/${1}" ] || return 0 +- +- ip= +- if [ -f "/sbin/ip" ]; then +- ip="/sbin/ip" +- elif [ -f "/bin/ip" ]; then +- ip="/bin/ip" - else - return 0 - fi +- - cat <<-EOF > /run/systemd/system/network-device-down.service - # This file was created by distrobuilder - [Unit] @@ -44,13 +46,14 @@ index dc5b506..0265da8 100644 - [Service] - # do not turn off if there is a default route to 169.254.0.1, i.e. the device is a routed nic - ExecCondition=/bin/sh -c '! /usr/bin/grep -qs 00000000.0100FEA9 /proc/net/route' -- ExecStart=-${ip_path} link set $1 down +- ExecStart=-${ip} link set ${1} down - Type=oneshot - RemainAfterExit=true - - [Install] - WantedBy=default.target - EOF +- - mkdir -p /run/systemd/system/default.target.wants - ln -sf /run/systemd/system/network-device-down.service /run/systemd/system/default.target.wants/network-device-down.service -} @@ -58,78 +61,105 @@ index dc5b506..0265da8 100644 # fix_systemd_override_unit generates a unit specific override fix_systemd_override_unit() { dropin_dir="/run/systemd/${1}.d" -@@ -113,16 +71,7 @@ fix_systemd_mask() { +@@ -122,16 +77,7 @@ fix_systemd_mask() { # fix_systemd_udev_trigger overrides the systemd-udev-trigger.service to match the latest version # of the file which uses "ExecStart=-" instead of "ExecStart=". fix_systemd_udev_trigger() { -- cmd= +- udev= - if [ -f /usr/bin/udevadm ]; then -- cmd=/usr/bin/udevadm +- udev=/usr/bin/udevadm - elif [ -f /sbin/udevadm ]; then -- cmd=/sbin/udevadm +- udev=/sbin/udevadm - elif [ -f /bin/udevadm ]; then -- cmd=/bin/udevadm +- udev=/bin/udevadm - else - return 0 - fi -+ cmd=udevadm ++ udev=/run/current-system/sw/bin/udevadm mkdir -p /run/systemd/system/systemd-udev-trigger.service.d cat <<-EOF > /run/systemd/system/systemd-udev-trigger.service.d/zzz-lxc-override.conf -@@ -134,38 +83,13 @@ fix_systemd_udev_trigger() { +@@ -143,52 +89,40 @@ fix_systemd_udev_trigger() { EOF } -# fix_systemd_sysctl overrides the systemd-sysctl.service to use "ExecStart=-" instead of "ExecStart=". -fix_systemd_sysctl() { -- cmd=/usr/lib/systemd/systemd-sysctl -- ! [ -e "${cmd}" ] && cmd=/lib/systemd/systemd-sysctl +- sysctl=/usr/lib/systemd/systemd-sysctl +- [ ! -e "${sysctl}" ] && sysctl=/lib/systemd/systemd-sysctl +- - mkdir -p /run/systemd/system/systemd-sysctl.service.d - cat <<-EOF > /run/systemd/system/systemd-sysctl.service.d/zzz-lxc-override.conf - # This file was created by distrobuilder - [Service] - ExecStart= -- ExecStart=-${cmd} +- ExecStart=-${sysctl} - EOF -} - ## Main logic --# Nothing to do in Incus VM but deployed in case it is later converted to a container --is_incus_vm && exit 0 - # Exit immediately if not an Incus/LXC container is_lxc_container || exit 0 --# Check for NetworkManager --nm_exists=0 -- --is_in_path NetworkManager && nm_exists=1 -- # Determine systemd version +-SYSTEMD="" -for path in /usr/lib/systemd/systemd /lib/systemd/systemd; do - [ -x "${path}" ] || continue -- -- systemd_version="$("${path}" --version | head -n1 | cut -d' ' -f2 | cut -d'~' -f1)" ++SYSTEMD="$(/run/current-system/sw/lib/systemd/systemd --version | head -n1 | cut -d' ' -f2 | cut -d'~' -f1)" + +- SYSTEMD="$("${path}" --version | head -n1 | cut -d' ' -f2 | cut -d'~' -f1)" - break -done -+systemd_version="$(systemd --version | head -n1 | cut -d' ' -f2)" - # Determine distro name and release - ID="" -@@ -196,7 +120,6 @@ fi +-# Apply systemd overrides +-if [ "${SYSTEMD}" -ge 244 ]; then +- fix_systemd_override_unit system/service +-else +- # Setup per-unit overrides +- find /lib/systemd /etc/systemd /run/systemd /usr/lib/systemd -name "*.service" -type f | sed 's#/\(lib\|etc\|run\|usr/lib\)/systemd/##g'| while read -r service_file; do +- fix_systemd_override_unit "${service_file}" +- done +-fi + +-# Workarounds for unprivileged containers. +-if ! is_lxc_privileged_container; then +- fix_ro_paths systemd-networkd.service +- fix_ro_paths systemd-resolved.service ++ ++# Overriding some systemd features is only needed if security.nesting=false ++# in which case, /dev/.lxc will be missing ++# Adding this conditional back for NixOS as we do not have the reported ++# problems, and the overrides could reduce potential service hardening ++if [ ! -d /dev/.lxc ]; then ++ # Apply systemd overrides ++ if [ "${SYSTEMD}" -ge 244 ]; then ++ fix_systemd_override_unit system/service ++ else ++ # Setup per-unit overrides ++ find /lib/systemd /etc/systemd /run/systemd /usr/lib/systemd -name "*.service" -type f | sed 's#/\(lib\|etc\|run\|usr/lib\)/systemd/##g'| while read -r service_file; do ++ fix_systemd_override_unit "${service_file}" ++ done ++ fi ++ ++ # Workarounds for unprivileged containers. ++ if ! is_lxc_privileged_container; then ++ fix_ro_paths systemd-networkd.service ++ fix_ro_paths systemd-resolved.service ++ fi + fi # Ignore failures on some units. fix_systemd_udev_trigger -fix_systemd_sysctl - # Mask some units. - fix_systemd_mask dev-hugepages.mount -@@ -226,11 +149,6 @@ if [ -d /etc/udev ]; then + # Fix issues with /run not being writable. + fix_ro_run systemd-nsresourced.service +@@ -221,11 +155,6 @@ if [ -d /etc/udev ]; then EOF fi -# Workarounds for NetworkManager in containers --if [ "${nm_exists}" -eq 1 ]; then +-if is_in_path NetworkManager; then - fix_nm_link_state eth0 -fi - diff --git a/pkgs/by-name/di/distrobuilder/package.nix b/pkgs/by-name/di/distrobuilder/package.nix index 595a651d869f..657aaf6419c0 100644 --- a/pkgs/by-name/di/distrobuilder/package.nix +++ b/pkgs/by-name/di/distrobuilder/package.nix @@ -10,6 +10,7 @@ gnutar, hivex, makeWrapper, + nix-update-script, nixosTests, pkg-config, squashfsTools, @@ -35,16 +36,15 @@ let in buildGoModule rec { pname = "distrobuilder"; - version = "3.1"; + version = "3.2"; - vendorHash = "sha256-3oHLvOdHbOdaL2FTo+a5HmayNi/i3zoAsU/du9h1N30="; + vendorHash = "sha256-nlqapWxuSZlbt22F3Y9X1uXFxJHvEoUBZDl078x8ZnA="; src = fetchFromGitHub { owner = "lxc"; repo = "distrobuilder"; - rev = "refs/tags/distrobuilder-${version}"; - sha256 = "sha256-cIzIoLQmg1kgI1QRAmFh/ca88PJBW2yIY92BKHKwTMk="; - fetchSubmodules = false; + tag = "distrobuilder-${version}"; + sha256 = "sha256-aDCx2WGAKdTNf0uMzwxG0AUmbuuWBFPYzNyycKklYOY="; }; buildInputs = bins; @@ -67,6 +67,8 @@ buildGoModule rec { }; generator = callPackage ./generator.nix { inherit src version; }; + + updateScript = nix-update-script { }; }; meta = { From ac6e0ec5a7d4cdb43fd22be3caaab84ba0cc03b1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 04:34:16 +0000 Subject: [PATCH 186/210] vi-mongo: 0.1.24 -> 0.1.25 --- pkgs/by-name/vi/vi-mongo/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/vi/vi-mongo/package.nix b/pkgs/by-name/vi/vi-mongo/package.nix index 0260bbcf575e..35a4969d40e2 100644 --- a/pkgs/by-name/vi/vi-mongo/package.nix +++ b/pkgs/by-name/vi/vi-mongo/package.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "vi-mongo"; - version = "0.1.24"; + version = "0.1.25"; src = fetchFromGitHub { owner = "kopecmaciej"; repo = "vi-mongo"; tag = "v${version}"; - hash = "sha256-L4LbVeH8Fgz7RD0tcyyKpP7+/aTvn1zfl+RpsWwiSfA="; + hash = "sha256-9Pbrj9leZfKEtlmNb/9iw0I75H425ucWRxlky9sOjc8="; }; - vendorHash = "sha256-rKXrmK0ns3FB6EGyCJ2nYrCUsQ7yPm8dmzJioiVzHIc="; + vendorHash = "sha256-OVd2wIssVJHamWpNrK+piQFl9Lz0xgYnnz/4D5yl1D4="; ldflags = [ "-s" From 9484a131d0e22750024c47b6d174f5a1bbdf6c05 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 05:09:04 +0000 Subject: [PATCH 187/210] razer-cli: 2.2.1 -> 2.3.0 --- pkgs/by-name/ra/razer-cli/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ra/razer-cli/package.nix b/pkgs/by-name/ra/razer-cli/package.nix index 37bf5eedb65c..47d888d8d4e2 100644 --- a/pkgs/by-name/ra/razer-cli/package.nix +++ b/pkgs/by-name/ra/razer-cli/package.nix @@ -10,14 +10,14 @@ python3.pkgs.buildPythonApplication rec { pname = "razer-cli"; - version = "2.2.1"; + version = "2.3.0"; pyproject = true; src = fetchFromGitHub { owner = "lolei"; repo = "razer-cli"; - rev = "v${version}"; - hash = "sha256-p/RcBpkvtqYQ3Ekt0pLvKyi1Vv93oHDd7hqSTu/5CSw="; + tag = "v${version}"; + hash = "sha256-uwTqDCYmG/5dyse0tF/CPG+9SlThyRyeHJ0OSBpcQio="; }; build-system = with python3.pkgs; [ From 999f35d0ef9555f070c3a0327e88f8c5cbca2043 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 05:30:02 +0000 Subject: [PATCH 188/210] python312Packages.firebase-admin: 6.7.0 -> 6.8.0 --- pkgs/development/python-modules/firebase-admin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/firebase-admin/default.nix b/pkgs/development/python-modules/firebase-admin/default.nix index 3881c92c8b8d..853b5a25c68b 100644 --- a/pkgs/development/python-modules/firebase-admin/default.nix +++ b/pkgs/development/python-modules/firebase-admin/default.nix @@ -19,14 +19,14 @@ buildPythonPackage rec { pname = "firebase-admin"; - version = "6.7.0"; + version = "6.8.0"; pyproject = true; src = fetchFromGitHub { owner = "firebase"; repo = "firebase-admin-python"; tag = "v${version}"; - hash = "sha256-MQFGgWQ2YgAii+IVP/78JKU1Q7QgEvMXz5WvXGoyw7g="; + hash = "sha256-N8DidHocdIV5qFEPZIqWZPfxvIfJzd/+jXGk/OZBT1s="; }; build-system = [ setuptools ]; From 608240cfaf19d80f0ea4c8d9b350688f2b26bee9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 05:32:27 +0000 Subject: [PATCH 189/210] docling: 2.30.0 -> 2.31.0 --- pkgs/development/python-modules/docling/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/docling/default.nix b/pkgs/development/python-modules/docling/default.nix index e49d247a4c40..67c59dcd3d84 100644 --- a/pkgs/development/python-modules/docling/default.nix +++ b/pkgs/development/python-modules/docling/default.nix @@ -49,14 +49,14 @@ buildPythonPackage rec { pname = "docling"; - version = "2.30.0"; + version = "2.31.0"; pyproject = true; src = fetchFromGitHub { owner = "docling-project"; repo = "docling"; tag = "v${version}"; - hash = "sha256-uYhqnOyj0bN/v51mafSAT073fVVedppsHZHQCk7E2Rk="; + hash = "sha256-hvNvplEjF/zEchJBN2yJ0/D5Yec/Grr6kdpzRLXeyZU="; }; build-system = [ From fe983f81a5617d843046b8b87e4353d76da3bdb7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 06:14:15 +0000 Subject: [PATCH 190/210] python312Packages.pyenphase: 1.25.5 -> 1.26.0 --- pkgs/development/python-modules/pyenphase/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyenphase/default.nix b/pkgs/development/python-modules/pyenphase/default.nix index b308b8e131cd..dd6d6ab0dee1 100644 --- a/pkgs/development/python-modules/pyenphase/default.nix +++ b/pkgs/development/python-modules/pyenphase/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "pyenphase"; - version = "1.25.5"; + version = "1.26.0"; pyproject = true; disabled = pythonOlder "3.11"; @@ -29,7 +29,7 @@ buildPythonPackage rec { owner = "pyenphase"; repo = "pyenphase"; tag = "v${version}"; - hash = "sha256-prYrs8JPw6KXqS981GvaXYIdo5+khf+vnxH60kKGvKE="; + hash = "sha256-Qr+F19J1JYazofriDWODDbDEYlUZAKv/4TVwoIRj5Rg="; }; pythonRelaxDeps = [ "tenacity" ]; @@ -64,7 +64,7 @@ buildPythonPackage rec { meta = with lib; { description = "Library to control enphase envoy"; homepage = "https://github.com/pyenphase/pyenphase"; - changelog = "https://github.com/pyenphase/pyenphase/blob/v${version}/CHANGELOG.md"; + changelog = "https://github.com/pyenphase/pyenphase/blob/${src.tag}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; From c04049aa11666269c637b6a686bac4a41e52a8f6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 06:56:50 +0000 Subject: [PATCH 191/210] avisynthplus: 3.7.4 -> 3.7.5 --- pkgs/by-name/av/avisynthplus/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/av/avisynthplus/package.nix b/pkgs/by-name/av/avisynthplus/package.nix index 1c5bee5f5557..c224ec6a02db 100644 --- a/pkgs/by-name/av/avisynthplus/package.nix +++ b/pkgs/by-name/av/avisynthplus/package.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "avisynthplus"; - version = "3.7.4"; + version = "3.7.5"; src = fetchFromGitHub { owner = "AviSynth"; repo = "AviSynthPlus"; tag = "v${finalAttrs.version}"; - hash = "sha256-M+F7bUSlH6kAyQLCq0RxmaE19RqHPPleTMyRuz5zqPg="; + hash = "sha256-RkEZWsAKZABtl+SbRLCjMqyQoi9ainbaI9hWlpO6Fwo="; }; patchPhase = '' From 42401ab97a8a12125420cdcbd991d746aec73a34 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 07:57:05 +0000 Subject: [PATCH 192/210] notation: 1.3.1 -> 1.3.2 --- pkgs/by-name/no/notation/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/no/notation/package.nix b/pkgs/by-name/no/notation/package.nix index cbc5eaa21dc0..865b6da8a14a 100644 --- a/pkgs/by-name/no/notation/package.nix +++ b/pkgs/by-name/no/notation/package.nix @@ -9,16 +9,16 @@ buildGoModule rec { pname = "notation"; - version = "1.3.1"; + version = "1.3.2"; src = fetchFromGitHub { owner = "notaryproject"; repo = pname; rev = "v${version}"; - hash = "sha256-KxxksliL2ZxbvwbLKB81Lhpvjab9nm4o3QBT2CVFwDw="; + hash = "sha256-l9A5AwKJ/atN92Oral6PRH2nCbMJ+/ST9weXYRZXWms="; }; - vendorHash = "sha256-Mjuw0J5ITLcTWbCUYKLBDrK84wrN7KC05dn0+eBqb9s="; + vendorHash = "sha256-WFcy7to3bV3V3bBto5F175PEIxrG9Tj7MuLeBXdSvaM="; nativeBuildInputs = [ installShellFiles From 4614c32b677cad2fed6d91c7c62fb33830dbe4bc Mon Sep 17 00:00:00 2001 From: Kirill Radzikhovskyy Date: Sun, 27 Apr 2025 17:59:27 +1000 Subject: [PATCH 193/210] python3Packages.rapidgzip: fix build; relax setuptools dependency --- pkgs/development/python-modules/rapidgzip/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/rapidgzip/default.nix b/pkgs/development/python-modules/rapidgzip/default.nix index ec89e760611b..5d60a3e96d5f 100644 --- a/pkgs/development/python-modules/rapidgzip/default.nix +++ b/pkgs/development/python-modules/rapidgzip/default.nix @@ -20,6 +20,11 @@ buildPythonPackage rec { hash = "sha256-fTXwrxZXtAUakMPAwsDSQz886Dnbkw/b7T1lFt4qXfE="; }; + prePatch = '' + # pythonRelaxDeps doesn't work here + substituteInPlace pyproject.toml --replace-fail "setuptools >= 61.2, < 72" "setuptools" + ''; + nativeBuildInputs = [ cython nasm From ad44a2ab81e27fbf74c32083f08cd13a1fbce64a Mon Sep 17 00:00:00 2001 From: Kirill Radzikhovskyy Date: Sun, 27 Apr 2025 18:35:28 +1000 Subject: [PATCH 194/210] python3Packages.ratarmountcore: fix build --- pkgs/development/python-modules/ratarmountcore/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/ratarmountcore/default.nix b/pkgs/development/python-modules/ratarmountcore/default.nix index eae5a61d679e..e8b732b62767 100644 --- a/pkgs/development/python-modules/ratarmountcore/default.nix +++ b/pkgs/development/python-modules/ratarmountcore/default.nix @@ -2,12 +2,14 @@ lib, buildPythonPackage, fetchFromGitHub, + fsspec, indexed-gzip, indexed-zstd, libarchive-c, pytestCheckHook, python-xz, pythonOlder, + writableTmpDirAsHomeHook, rapidgzip, rarfile, setuptools, @@ -54,6 +56,8 @@ buildPythonPackage rec { pytestCheckHook zstandard zstd + fsspec + writableTmpDirAsHomeHook ] ++ lib.flatten (builtins.attrValues optional-dependencies); pythonImportsCheck = [ "ratarmountcore" ]; @@ -73,6 +77,8 @@ buildPythonPackage rec { "test_file_versions" "test_stream_compressed" "test_chimera_file" + "test_URLContextManager" + "test_URL" ]; meta = with lib; { From fdf05e499174a3365ac46a14d96a00fd715eb49e Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Sun, 27 Apr 2025 09:44:00 +0200 Subject: [PATCH 195/210] nixos/tzupdate: Add basic test --- nixos/tests/all-tests.nix | 1 + nixos/tests/tzupdate.nix | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 nixos/tests/tzupdate.nix diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 2cada8eaaa0f..824ae2f0a46f 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -1389,6 +1389,7 @@ in tuxguitar = runTest ./tuxguitar.nix; twingate = runTest ./twingate.nix; typesense = handleTest ./typesense.nix { }; + tzupdate = runTest ./tzupdate.nix; ucarp = handleTest ./ucarp.nix { }; udisks2 = handleTest ./udisks2.nix { }; ulogd = handleTest ./ulogd/ulogd.nix { }; diff --git a/nixos/tests/tzupdate.nix b/nixos/tests/tzupdate.nix new file mode 100644 index 000000000000..a6defcfa18ea --- /dev/null +++ b/nixos/tests/tzupdate.nix @@ -0,0 +1,22 @@ +{ lib, ... }: +let + clientNodeName = "client"; +in +{ + name = "tzupdate"; + + # TODO: Test properly: + # - Add server node + # - Add client configuration to talk to the server node + # - Assert that the time zone changes appropriately + nodes.${clientNodeName} = { + services.tzupdate.enable = true; + }; + + testScript = '' + start_all() + ${clientNodeName}.wait_for_unit("multi-user.target") + ''; + + meta.maintainers = [ lib.maintainers.l0b0 ]; +} From 9b3ee87994d72d30c76a035bb69996a50e08914b Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Sun, 27 Apr 2025 10:27:19 +0200 Subject: [PATCH 196/210] nixos/tzupdate: Remove reference to non-existing attribute Fixes #402016. --- nixos/modules/services/misc/tzupdate.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/services/misc/tzupdate.nix b/nixos/modules/services/misc/tzupdate.nix index 454b47620e11..044b1dc44777 100644 --- a/nixos/modules/services/misc/tzupdate.nix +++ b/nixos/modules/services/misc/tzupdate.nix @@ -68,7 +68,6 @@ in systemd.timers.tzupdate = { enable = cfg.timer.enable; - interval = cfg.timer.interval; timerConfig = { OnStartupSec = "30s"; OnCalendar = cfg.timer.interval; From 9b636914287cd67bdfc2b9b853b5d80abe09fedb Mon Sep 17 00:00:00 2001 From: isabel Date: Sun, 27 Apr 2025 11:10:37 +0100 Subject: [PATCH 197/210] youtube-music: 3.8.1 -> 3.9.0 Diff: https://github.com/th-ch/youtube-music/compare/v3.8.1...v3.9.0 Changelog: https://github.com/th-ch/youtube-music/blob/master/changelog.md#v390 --- pkgs/applications/audio/youtube-music/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/audio/youtube-music/default.nix b/pkgs/applications/audio/youtube-music/default.nix index 0147c4d31b79..871c0ca56807 100644 --- a/pkgs/applications/audio/youtube-music/default.nix +++ b/pkgs/applications/audio/youtube-music/default.nix @@ -13,18 +13,18 @@ stdenv.mkDerivation (finalAttrs: { pname = "youtube-music"; - version = "3.8.1"; + version = "3.9.0"; src = fetchFromGitHub { owner = "th-ch"; repo = "youtube-music"; rev = "v${finalAttrs.version}"; - hash = "sha256-KypGAP3dx1g5x5IWbmzXIR9olZo190s5r+VkbzIjvuQ="; + hash = "sha256-xaHYNfW5ZLYiaeJ0F32NQ87woMh6K4Ea9rjgNOyabck="; }; pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-5Vlf2+l77r6HvuSGy7NrGV1HDX+l5DC0fq/pMWDKSas="; + hash = "sha256-xIQyTetHU37gTxCcQp4VCqzGdIfVQGy/aORCVba6YQ0="; }; nativeBuildInputs = [ From 88262e0ebf5cf315900a95d1f82d8d51e54f9423 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 10:28:40 +0000 Subject: [PATCH 198/210] gscreenshot: 3.8.0 -> 3.9.2 --- pkgs/by-name/gs/gscreenshot/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gs/gscreenshot/package.nix b/pkgs/by-name/gs/gscreenshot/package.nix index 49eeaff4d92d..1cc9f76984f4 100644 --- a/pkgs/by-name/gs/gscreenshot/package.nix +++ b/pkgs/by-name/gs/gscreenshot/package.nix @@ -19,13 +19,13 @@ python3Packages.buildPythonApplication rec { pname = "gscreenshot"; - version = "3.8.0"; + version = "3.9.2"; src = fetchFromGitHub { owner = "thenaterhood"; repo = "${pname}"; tag = "v${version}"; - sha256 = "sha256-erNP5Joz4j08jN2c0wUX/h3sJmr/wXYFghBA+7RX4Aw="; + sha256 = "sha256-u60wxtWE7VaAE/xKlcY9vE7Chs5TPd0BTe5zy1D7ZAQ="; }; # needed for wrapGAppsHook3 to function From a9765d06216ca9eb6da6b99ac021142cf7f56aa5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 11:15:30 +0000 Subject: [PATCH 199/210] go-blueprint: 0.10.6 -> 0.10.8 --- pkgs/by-name/go/go-blueprint/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/go/go-blueprint/package.nix b/pkgs/by-name/go/go-blueprint/package.nix index 5bb40fc4d1a5..9b48a875ffbb 100644 --- a/pkgs/by-name/go/go-blueprint/package.nix +++ b/pkgs/by-name/go/go-blueprint/package.nix @@ -9,13 +9,13 @@ buildGoModule rec { pname = "go-blueprint"; - version = "0.10.6"; + version = "0.10.8"; src = fetchFromGitHub { owner = "Melkeydev"; repo = "go-blueprint"; rev = "v${version}"; - hash = "sha256-xWv/4/7+eqSBLmyuF+vLLZzMn8A8sE6vkldER145FQQ="; + hash = "sha256-oEp+qMWN2SIW9MBVbfk72Ogu9nbuR++YsTeRpbbQ2LY="; }; ldflags = [ From a69e2e2c675a621c8ec0a9cf6cc7f891e18d20a2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 11:29:22 +0000 Subject: [PATCH 200/210] servo: 0-unstable-2025-04-18 -> 0-unstable-2025-04-27 --- pkgs/by-name/se/servo/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/se/servo/package.nix b/pkgs/by-name/se/servo/package.nix index 3b794c1d249c..a22a0bf5ae54 100644 --- a/pkgs/by-name/se/servo/package.nix +++ b/pkgs/by-name/se/servo/package.nix @@ -61,13 +61,13 @@ in rustPlatform.buildRustPackage { pname = "servo"; - version = "0-unstable-2025-04-18"; + version = "0-unstable-2025-04-27"; src = fetchFromGitHub { owner = "servo"; repo = "servo"; - rev = "2ee8427665099987f715296d4d55b6388a480c08"; - hash = "sha256-fAUTBfoFGZqdZylXvY7h+0Ol0xd1CDNyJxx3rlhI7ss="; + rev = "e22ce3988b5962c254857419afbf36cced9648aa"; + hash = "sha256-shhvxwnhQXMVtXufd4IE8aeUeDm84MLpVktMkodFmeg="; # Breaks reproducibility depending on whether the picked commit # has other ref-names or not, which may change over time, i.e. with # "ref-names: HEAD -> main" as long this commit is the branch HEAD @@ -78,7 +78,7 @@ rustPlatform.buildRustPackage { }; useFetchCargoVendor = true; - cargoHash = "sha256-hGLSGbT4089R7BP4pkIQL/YNQlVfIDqW9sUJv+yCUv8="; + cargoHash = "sha256-TUhxQFuRINNHEfnnIKejMP6/j3K7t0y9bovcT/l6SZU="; # set `HOME` to a temp dir for write access # Fix invalid option errors during linking (https://github.com/mozilla/nixpkgs-mozilla/commit/c72ff151a3e25f14182569679ed4cd22ef352328) From 4f742ca9930249b14b2e768db6912c7da547bb6e Mon Sep 17 00:00:00 2001 From: Amadej Kastelic Date: Sun, 27 Apr 2025 14:01:00 +0200 Subject: [PATCH 201/210] vscode-extensions.golang.go: 0.47.1 -> 0.47.2 https://github.com/golang/vscode-go/releases/tag/v0.47.2 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index f681d3e44b21..9c618b6d34b5 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -2219,8 +2219,8 @@ let mktplcRef = { name = "Go"; publisher = "golang"; - version = "0.47.1"; - hash = "sha256-FKbPvXIO7SGt9C2lD7+0Q6yD0QNzrdef1ltsYXPmAi0="; + version = "0.47.2"; + hash = "sha256-d2JXrKd3pMPWshy1pZ0HGmk2ZTVn4W5IrwakkibZTgk="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/golang.Go/changelog"; From 190567fb3b9da7bda5bd0145b4061e59d9dbba9a Mon Sep 17 00:00:00 2001 From: Marie Ramlow Date: Sun, 27 Apr 2025 14:26:08 +0200 Subject: [PATCH 202/210] python3Packages.cloudflare: fix build --- pkgs/development/python-modules/cloudflare/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/cloudflare/default.nix b/pkgs/development/python-modules/cloudflare/default.nix index a4723c583516..72e25bd96cc5 100644 --- a/pkgs/development/python-modules/cloudflare/default.nix +++ b/pkgs/development/python-modules/cloudflare/default.nix @@ -25,6 +25,11 @@ buildPythonPackage rec { hash = "sha256-a5++mUhW/pQq3GpIgbe+3tIIA03FxT3Wg3UfYy5Hoaw="; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace-fail 'hatchling==1.26.3' 'hatchling>=1.26.3' + ''; + build-system = [ hatchling hatch-fancy-pypi-readme From 84b4273cc88f8aaf65fd809bd249204100a69304 Mon Sep 17 00:00:00 2001 From: jayrovacsek Date: Sun, 27 Apr 2025 23:00:51 +1000 Subject: [PATCH 203/210] python3Packages.dtfabric: init at 20230520 --- .../python-modules/dtfabric/default.nix | 43 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 45 insertions(+) create mode 100644 pkgs/development/python-modules/dtfabric/default.nix diff --git a/pkgs/development/python-modules/dtfabric/default.nix b/pkgs/development/python-modules/dtfabric/default.nix new file mode 100644 index 000000000000..f0fc0b105035 --- /dev/null +++ b/pkgs/development/python-modules/dtfabric/default.nix @@ -0,0 +1,43 @@ +{ + lib, + buildPythonPackage, + fetchPypi, + python, + pyyaml, + setuptools, +}: +buildPythonPackage rec { + pname = "dtfabric"; + version = "20230520"; + pyproject = true; + + src = fetchPypi { + inherit pname version; + hash = "sha256-rJPBEe/eAQ7OPPZHeFbomkb8ca3WTheDhs/ic6GohVM="; + }; + + build-system = [ setuptools ]; + + dependencies = [ + pyyaml + ]; + + pythonRemoveDeps = [ + "pip" + ]; + + checkPhase = '' + runHook preCheck + ${python.interpreter} run_tests.py + runHook postCheck + ''; + + meta = { + changelog = "https://github.com/libyal/dtfabric/releases/tag/${version}"; + description = "Project to manage data types and structures, as used in the libyal projects"; + downloadPage = "https://github.com/libyal/dtfabric/releases"; + homepage = "https://github.com/libyal/dtfabric"; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.jayrovacsek ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3da85187ea93..8065d14c5f85 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4006,6 +4006,8 @@ self: super: with self; { dsnap = callPackage ../development/python-modules/dsnap { }; + dtfabric = callPackage ../development/python-modules/dtfabric { }; + dtlssocket = callPackage ../development/python-modules/dtlssocket { }; dtschema = callPackage ../development/python-modules/dtschema { }; From 201a8e9d386fff30e9b30c2a1c7c64814bec4269 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 27 Apr 2025 15:12:43 +0200 Subject: [PATCH 204/210] vimPlugins.bitbake-vim: disable auto-updates --- .../editors/vim/plugins/non-generated/bitbake-vim/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/non-generated/bitbake-vim/default.nix b/pkgs/applications/editors/vim/plugins/non-generated/bitbake-vim/default.nix index fc811bb0ff8a..1527c7596cbf 100644 --- a/pkgs/applications/editors/vim/plugins/non-generated/bitbake-vim/default.nix +++ b/pkgs/applications/editors/vim/plugins/non-generated/bitbake-vim/default.nix @@ -7,6 +7,8 @@ vimUtils.buildVimPlugin rec { pname = "bitbake-vim"; version = "2.10.4"; + # The tags are very messy on the upstream repo. We prefer disabling automatic updates for this plugin. + # nixpkgs-update: no auto update src = fetchFromGitHub { owner = "openembedded"; repo = "bitbake"; From 0c3a155e87c26938fee0b39879acdc9cb5f55dce Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 13:16:32 +0000 Subject: [PATCH 205/210] ps3-disc-dumper: 4.3.1 -> 4.3.2 --- pkgs/by-name/ps/ps3-disc-dumper/deps.json | 15 +++++---------- pkgs/by-name/ps/ps3-disc-dumper/package.nix | 4 ++-- 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/ps/ps3-disc-dumper/deps.json b/pkgs/by-name/ps/ps3-disc-dumper/deps.json index 18356a70dd57..74b08953bf16 100644 --- a/pkgs/by-name/ps/ps3-disc-dumper/deps.json +++ b/pkgs/by-name/ps/ps3-disc-dumper/deps.json @@ -169,11 +169,6 @@ "version": "2.88.9", "hash": "sha256-kP5XM5GgwHGfNJfe4T2yO5NIZtiF71Ddp0pd1vG5V/4=" }, - { - "pname": "System.CodeDom", - "version": "9.0.4", - "hash": "sha256-X8IDHw/ssp0vgPSnyM/tmDTb3poH6GLe+gZ4MR9qfho=" - }, { "pname": "System.IO.Hashing", "version": "9.0.4", @@ -184,11 +179,6 @@ "version": "8.0.0", "hash": "sha256-LdpB1s4vQzsOODaxiKstLks57X9DTD5D6cPx8DE1wwE=" }, - { - "pname": "System.Management", - "version": "9.0.4", - "hash": "sha256-+sW/NQELaBGjUfzndaNLPHKKQVdI1yOJMaqF4tV2SVY=" - }, { "pname": "System.Memory", "version": "4.5.5", @@ -213,5 +203,10 @@ "pname": "Tmds.DBus.Protocol", "version": "0.20.0", "hash": "sha256-CRW/tkgsuBiBJfRwou12ozRQsWhHDooeP88E5wWpWJw=" + }, + { + "pname": "WmiLight", + "version": "6.13.0", + "hash": "sha256-dliebNR45yj1Gvyv4WE7dMnWcdHx94PLjBv3AWhdS5I=" } ] diff --git a/pkgs/by-name/ps/ps3-disc-dumper/package.nix b/pkgs/by-name/ps/ps3-disc-dumper/package.nix index c3f0a571b961..f2018277e499 100644 --- a/pkgs/by-name/ps/ps3-disc-dumper/package.nix +++ b/pkgs/by-name/ps/ps3-disc-dumper/package.nix @@ -10,13 +10,13 @@ buildDotnetModule rec { pname = "ps3-disc-dumper"; - version = "4.3.1"; + version = "4.3.2"; src = fetchFromGitHub { owner = "13xforever"; repo = "ps3-disc-dumper"; tag = "v${version}"; - hash = "sha256-kSbSt8LObcN+cVJH1OgrLQsN0+bmT0FRquW54L4a/Wo="; + hash = "sha256-RZNM0rkX/Ptf7dNuEJpHwntjU9TDGKEvfje7iaxXKSQ="; }; dotnet-sdk = dotnetCorePackages.sdk_9_0; From 6d75062802a631c0784e9de584b754de8e3dd656 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 27 Apr 2025 13:47:03 +0000 Subject: [PATCH 206/210] terraform-providers.okta: 4.16.0 -> 4.17.0 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 6fc8c0c25642..8855742ce681 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -922,13 +922,13 @@ "vendorHash": null }, "okta": { - "hash": "sha256-M2F84q7ZBzrGUpUv5vTWeeb3jG4RcinFxiQxooWkrhs=", + "hash": "sha256-1/GKJWRy+epeEwReieN6aVNP4/oPT3FTkHeHtticL8k=", "homepage": "https://registry.terraform.io/providers/okta/okta", "owner": "okta", "repo": "terraform-provider-okta", - "rev": "v4.16.0", + "rev": "v4.17.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-fYCisoPEON8F11HauVONyqS56RS/1+bebnLeCCXTrsw=" + "vendorHash": "sha256-5BkKjne3r3V8T+SkqjfHVEpXXK8sKTYMc23g1EaLoOE=" }, "oktaasa": { "hash": "sha256-2LhxgowqKvDDDOwdznusL52p2DKP+UiXALHcs9ZQd0U=", From ea517c04f2fd39382057616b0cadfe979b70626f Mon Sep 17 00:00:00 2001 From: Lin Xianyi Date: Sun, 27 Apr 2025 22:57:48 +0800 Subject: [PATCH 207/210] mpvScripts.eisa01.undoredo: init at 0-unstable-2023-11-25 (#401930) --- pkgs/applications/video/mpv/scripts/eisa01.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/applications/video/mpv/scripts/eisa01.nix b/pkgs/applications/video/mpv/scripts/eisa01.nix index cdf0501f88f7..76567b8f5126 100644 --- a/pkgs/applications/video/mpv/scripts/eisa01.nix +++ b/pkgs/applications/video/mpv/scripts/eisa01.nix @@ -69,5 +69,13 @@ lib.recurseIntoAttrs ( maintainers = with lib.maintainers; [ iynaix ]; }; }; + + undoredo = { + scriptPath = "scripts/UndoRedo.lua"; + meta = { + description = "Undo / redo any accidental time jumps"; + maintainers = with lib.maintainers; [ iynaix ]; + }; + }; } ) From 488d37d95bb5de4ad38cbd647e792574b7147800 Mon Sep 17 00:00:00 2001 From: Valentino <65391343+luftmensch-luftmensch@users.noreply.github.com> Date: Sun, 27 Apr 2025 17:33:42 +0200 Subject: [PATCH 208/210] mpvScripts.eisa01.simplebookmark: init at 0-unstable-2023-09-22 (#402041) --- pkgs/applications/video/mpv/scripts/eisa01.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/applications/video/mpv/scripts/eisa01.nix b/pkgs/applications/video/mpv/scripts/eisa01.nix index 76567b8f5126..e09e350ac38a 100644 --- a/pkgs/applications/video/mpv/scripts/eisa01.nix +++ b/pkgs/applications/video/mpv/scripts/eisa01.nix @@ -54,6 +54,14 @@ lib.recurseIntoAttrs ( }; }; + simplebookmark = { + scriptPath = "scripts/SimpleBookmark.lua"; + meta = { + description = "Simple bookmarks script based on assigning keys"; + maintainers = with lib.maintainers; [ luftmensch-luftmensch ]; + }; + }; + simplehistory = { scriptPath = "scripts/SimpleHistory.lua"; meta = { From 02b5fe25a4065bb65375cb7186a6355447d12934 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Sun, 27 Apr 2025 18:36:07 +0200 Subject: [PATCH 209/210] Revert "file: patch to fix misclassification of some zip files" --- ...-zip-files-are-misclassified-as-data.patch | 52 ------------------- pkgs/tools/misc/file/default.nix | 6 --- 2 files changed, 58 deletions(-) delete mode 100644 pkgs/tools/misc/file/PR-571-jschleus-Some-zip-files-are-misclassified-as-data.patch diff --git a/pkgs/tools/misc/file/PR-571-jschleus-Some-zip-files-are-misclassified-as-data.patch b/pkgs/tools/misc/file/PR-571-jschleus-Some-zip-files-are-misclassified-as-data.patch deleted file mode 100644 index 62559b6f0363..000000000000 --- a/pkgs/tools/misc/file/PR-571-jschleus-Some-zip-files-are-misclassified-as-data.patch +++ /dev/null @@ -1,52 +0,0 @@ -From 60b2032b96fc185b37fb0f2152e834efb2edad6e Mon Sep 17 00:00:00 2001 -From: Christos Zoulas -Date: Thu, 5 Dec 2024 19:41:12 +0000 -Subject: [PATCH] PR/571: jschleus: Some zip files are misclassified as data - ---- - magic/Magdir/archive | 25 +++++++++++++++---------- - 1 file changed, 15 insertions(+), 10 deletions(-) - -diff --git a/magic/Magdir/archive b/magic/Magdir/archive -index e6ff4570a..e560523cb 100644 ---- a/magic/Magdir/archive -+++ b/magic/Magdir/archive -@@ -1795,6 +1795,17 @@ - !:ext zip/cbz - - -+# Generic zip archives (Greg Roelofs, c/o zip-bugs@wkuvx1.wku.edu) -+# Next line excludes specialized formats: -+0 name zipgeneric -+>4 beshort x Zip archive data, at least -+!:mime application/zip -+>4 use zipversion -+>4 beshort x to extract -+>8 beshort x \b, compression method= -+>8 use zipcompression -+>0x161 string WINZIP \b, WinZIP self-extracting -+ - 0 string PK\003\004 - !:strength +1 - # IOS/IPadOS IPA file (Zip archive) -@@ -2132,17 +2143,11 @@ - >>>>>>(-6.l) search/9000 kmp.json Keyman Compiled Package File - !:mime application/vnd.keyman.kmp+zip - !:ext kmp -+>>>>>+4 default x -+>>>>>>0 use zipgeneric - --# Generic zip archives (Greg Roelofs, c/o zip-bugs@wkuvx1.wku.edu) --# Next line excludes specialized formats: - >>>>+4 default x -->>>>>4 beshort x Zip archive data, at least --!:mime application/zip -->>>>>4 use zipversion -->>>>>4 beshort x to extract -->>>>>8 beshort x \b, compression method= -->>>>>8 use zipcompression -->>>>>0x161 string WINZIP \b, WinZIP self-extracting -+>>>>>0 use zipgeneric - - # Zip archives (Greg Roelofs, c/o zip-bugs@wkuvx1.wku.edu) - 0 string PK\005\006 Zip archive data (empty) diff --git a/pkgs/tools/misc/file/default.nix b/pkgs/tools/misc/file/default.nix index 4059809a882c..40becb915e1f 100644 --- a/pkgs/tools/misc/file/default.nix +++ b/pkgs/tools/misc/file/default.nix @@ -26,12 +26,6 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-ycx3x8VgxUMTXtxVWvYJ1WGdvvARmX6YjOQKPXXYYIg="; }; - patches = [ - # https://github.com/file/file/commit/60b2032b96fc185b37fb0f2152e834efb2edad6e - # Fix for misclassification of some zip files - ./PR-571-jschleus-Some-zip-files-are-misclassified-as-data.patch - ]; - outputs = [ "out" "dev" From f288d08234e15382ecc7775e782df8e6a1608c44 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sun, 27 Apr 2025 19:46:39 +0300 Subject: [PATCH 210/210] Revert "file: patch to fix misclassification of some zip files"