From 8bbba0e9ecc9ed84df587a2f347aaea6aa476718 Mon Sep 17 00:00:00 2001 From: liberodark Date: Sun, 27 Jul 2025 18:48:26 +0200 Subject: [PATCH 01/42] zaparoo: init at 2.5.1 --- pkgs/by-name/za/zaparoo/package.nix | 84 +++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 pkgs/by-name/za/zaparoo/package.nix diff --git a/pkgs/by-name/za/zaparoo/package.nix b/pkgs/by-name/za/zaparoo/package.nix new file mode 100644 index 000000000000..ce6e16edf6a5 --- /dev/null +++ b/pkgs/by-name/za/zaparoo/package.nix @@ -0,0 +1,84 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, + fetchurl, + versionCheckHook, + nix-update-script, + pkg-config, + libusb1, + libnfc, +}: + +buildGoModule (finalAttrs: { + pname = "zaparoo"; + version = "2.5.1"; + + src = fetchFromGitHub { + owner = "ZaparooProject"; + repo = "zaparoo-core"; + tag = "v${finalAttrs.version}"; + hash = "sha256-U/MNK8K7XAEuIa06mjJdUJRKHUFWqH7BFhAgJCbdj/s="; + }; + + vendorHash = "sha256-UTMYZ8la4VsxIVjcRg8l1yGy52CRjv/6WZQgHJ+oFdE="; + + webUIVersion = "1.8.0"; + webUI = fetchurl { + url = "https://github.com/ZaparooProject/zaparoo-app/releases/download/v${finalAttrs.webUIVersion}/zaparoo_app-web-${finalAttrs.webUIVersion}.tar.gz"; + hash = "sha256-77QyMFbx73vaKIRDCnhdqDXBb8MfQSsCWghe3XEL0tk="; + }; + + subPackages = [ "cmd/linux" ]; + + tags = [ + "netgo" + "osusergo" + "sqlite_omit_load_extension" + ]; + + ldflags = [ + "-s" + "-X github.com/ZaparooProject/zaparoo-core/pkg/config.AppVersion=${finalAttrs.version}" + ]; + + env.CGO_ENABLED = 1; + + nativeBuildInputs = [ + pkg-config + ]; + + buildInputs = [ + libusb1 + libnfc + ]; + + postPatch = '' + mkdir -p pkg/assets/_app/dist + tar xf ${finalAttrs.webUI} -C pkg/assets/_app/dist/ + ''; + + postInstall = '' + mv $out/bin/linux $out/bin/zaparoo + ''; + + nativeInstallCheckInputs = [ + versionCheckHook + ]; + + versionCheckProgramArg = "--version"; + doInstallCheck = true; + + passthru = { + updateScript = nix-update-script { }; + }; + + meta = { + description = "Launch games and cores on your MiSTer, emulators and handhelds using NFC tags or cards"; + homepage = "https://zaparoo.org/"; + changelog = "https://github.com/ZaparooProject/zaparoo-core/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ liberodark ]; + mainProgram = "zaparoo"; + }; +}) From 116ed8c489a2273d336df8f810f78772f65bedb2 Mon Sep 17 00:00:00 2001 From: Giannin Date: Wed, 3 Sep 2025 18:19:32 +0200 Subject: [PATCH 02/42] vscode-extensions.elijah-potter.harper: init at 0.61.0 https://github.com/Automattic/harper/releases/tag/v0.61.0 --- .../editors/vscode/extensions/default.nix | 2 + .../elijah-potter.harper/default.nix | 38 +++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 pkgs/applications/editors/vscode/extensions/elijah-potter.harper/default.nix diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 1170b2db2768..4cc60195c9e3 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -1612,6 +1612,8 @@ let }; }; + elijah-potter.harper = callPackage ./elijah-potter.harper { }; + elixir-lsp.vscode-elixir-ls = buildVscodeMarketplaceExtension { mktplcRef = { name = "elixir-ls"; diff --git a/pkgs/applications/editors/vscode/extensions/elijah-potter.harper/default.nix b/pkgs/applications/editors/vscode/extensions/elijah-potter.harper/default.nix new file mode 100644 index 000000000000..93e87a47131c --- /dev/null +++ b/pkgs/applications/editors/vscode/extensions/elijah-potter.harper/default.nix @@ -0,0 +1,38 @@ +{ + lib, + vscode-utils, + vscode-extension-update-script, + jq, + harper, + moreutils, + ... +}: + +vscode-utils.buildVscodeMarketplaceExtension { + mktplcRef = { + name = "harper"; + publisher = "elijah-potter"; + version = harper.version; + hash = "sha256-m9PN1BZf6rLrNnX8meX2TjGx8zGLl0GgnHEgQirh9Oc="; + }; + + nativeBuildInputs = [ + jq + moreutils + ]; + + postInstall = '' + cd "$out/$installPrefix" + jq '.contributes.configuration.properties."harper.path".default = "${harper}/bin/harper-ls"' package.json | sponge package.json + ''; + passthru.updateScript = vscode-extension-update-script { }; + + meta = { + changelog = "https://github.com/Automattic/harper/releases/tag/v${harper.version}"; + description = "The grammar checker for developers as a Visual Studio Code extension"; + downloadPage = "https://marketplace.visualstudio.com/items?itemName=elijah-potter.harper"; + homepage = "https://github.com/automattic/harper"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ MasterEvarior ]; + }; +} From 850200ab29798e98b96540c369f609ab76b72eb6 Mon Sep 17 00:00:00 2001 From: Krzysztof Nazarewski Date: Thu, 18 Sep 2025 17:35:45 +0200 Subject: [PATCH 03/42] nixos/netbird: add SYSTEMD_UNIT to pick up logs in debug bundles --- nixos/modules/services/networking/netbird.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/services/networking/netbird.nix b/nixos/modules/services/networking/netbird.nix index 7c3fe93a5678..7640632b5966 100644 --- a/nixos/modules/services/networking/netbird.nix +++ b/nixos/modules/services/networking/netbird.nix @@ -414,6 +414,9 @@ in NB_LOG_LEVEL = client.logLevel; NB_SERVICE = client.service.name; NB_WIREGUARD_PORT = toString client.port; + # for gathering journald logs into debug bundles + # see https://github.com/netbirdio/netbird/blob/2c87fa623654c5eef76bc0226062290201eef13a/client/internal/debug/debug_linux.go#L50-L51 + SYSTEMD_UNIT = client.service.name; } // optionalAttrs (client.dns-resolver.address != null) { NB_DNS_RESOLVER_ADDRESS = "${client.dns-resolver.address}:${builtins.toString client.dns-resolver.port}"; From eee5067f19a883e9125164e0a4c9f3de4bb7dfd3 Mon Sep 17 00:00:00 2001 From: Krzysztof Nazarewski Date: Fri, 19 Sep 2025 11:31:56 +0200 Subject: [PATCH 04/42] nixos/netbird: move `netbird debug bundle` tweaks to one place --- nixos/modules/services/networking/netbird.nix | 32 ++++++++++++------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/nixos/modules/services/networking/netbird.nix b/nixos/modules/services/networking/netbird.nix index 7640632b5966..f6708907b667 100644 --- a/nixos/modules/services/networking/netbird.nix +++ b/nixos/modules/services/networking/netbird.nix @@ -414,9 +414,6 @@ in NB_LOG_LEVEL = client.logLevel; NB_SERVICE = client.service.name; NB_WIREGUARD_PORT = toString client.port; - # for gathering journald logs into debug bundles - # see https://github.com/netbirdio/netbird/blob/2c87fa623654c5eef76bc0226062290201eef13a/client/internal/debug/debug_linux.go#L50-L51 - SYSTEMD_UNIT = client.service.name; } // optionalAttrs (client.dns-resolver.address != null) { NB_DNS_RESOLVER_ADDRESS = "${client.dns-resolver.address}:${builtins.toString client.dns-resolver.port}"; @@ -545,14 +542,7 @@ in after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - path = - optionals (!config.services.resolved.enable) [ pkgs.openresolv ] - # useful for `netbird debug` system info gathering - ++ optionals config.networking.nftables.enable [ pkgs.nftables ] - ++ optionals (!config.networking.nftables.enable) [ - pkgs.iptables - pkgs.ipset - ]; + path = optionals (!config.services.resolved.enable) [ pkgs.openresolv ]; serviceConfig = { ExecStart = "${getExe client.wrapper} service run"; @@ -576,6 +566,26 @@ in } ); } + # netbird debug bundle related configurations + { + systemd.services = toClientAttrs ( + client: + nameValuePair client.service.name { + /* + lets NetBird daemon know which systemd service to gather logs for + see https://github.com/netbirdio/netbird/blob/2c87fa623654c5eef76bc0226062290201eef13a/client/internal/debug/debug_linux.go#L50-L51 + */ + environment.SYSTEMD_UNIT = client.service.name; + + path = + optionals config.networking.nftables.enable [ pkgs.nftables ] + ++ optionals (!config.networking.nftables.enable) [ + pkgs.iptables + pkgs.ipset + ]; + } + ); + } # Hardening section (mkIf (hardenedClients != { }) { users.groups = toHardenedClientAttrs (client: nameValuePair client.user.group { }); From dd7b3992506debed272b96b21c31891264004a87 Mon Sep 17 00:00:00 2001 From: Krzysztof Nazarewski Date: Fri, 19 Sep 2025 11:39:50 +0200 Subject: [PATCH 05/42] nixos/netbird: allow reading journald messages 2025-09-19T10:50:03+02:00 ERRO client/internal/debug/debug.go:338: failed to add systemd logs: get systemd logs for netbird-priv: execute journalctl: exit status 1 (stderr: Hint: You are currently not seeing messages from other users and the system. Users in groups 'adm', 'systemd-journal', 'wheel' can see all messages. Pass -q to turn off this notice. No journal files were opened due to insufficient permissions. ) --- nixos/modules/services/networking/netbird.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nixos/modules/services/networking/netbird.nix b/nixos/modules/services/networking/netbird.nix index f6708907b667..036db3124562 100644 --- a/nixos/modules/services/networking/netbird.nix +++ b/nixos/modules/services/networking/netbird.nix @@ -585,6 +585,18 @@ in ]; } ); + users.users = toHardenedClientAttrs ( + client: + nameValuePair client.user.name { + extraGroups = [ + /* + allows debug bundles to gather systemd logs for `netbird*.service` + this is not ideal for hardening as it grants access to the whole journal, not just own logs + */ + "systemd-journal" + ]; + } + ); } # Hardening section (mkIf (hardenedClients != { }) { From a72101810adf611ec8a6eb9620ee14ed9a442f0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=B7=F0=90=91=91=F0=90=91=B4=F0=90=91=95=F0=90=91=91?= =?UTF-8?q?=F0=90=91=A9=F0=90=91=A4?= Date: Mon, 22 Sep 2025 18:44:51 +0700 Subject: [PATCH 06/42] =?UTF-8?q?h2o:=202.3.0-rolling-2025-09-20=20?= =?UTF-8?q?=E2=86=92=202.3.0-rolling-2025-09-22?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/h2/h2o/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/h2/h2o/package.nix b/pkgs/by-name/h2/h2o/package.nix index 2df272959a36..ef743bf004bf 100644 --- a/pkgs/by-name/h2/h2o/package.nix +++ b/pkgs/by-name/h2/h2o/package.nix @@ -23,13 +23,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "h2o"; - version = "2.3.0-rolling-2025-09-20"; + version = "2.3.0-rolling-2025-09-22"; src = fetchFromGitHub { owner = "h2o"; repo = "h2o"; - rev = "c3930f0fd75cc1f232b9298592d88b35b648e999"; - hash = "sha256-pSWEPXhXTe+El1OwcJFzqHosqrCkKxVs38TeiI/3kRI="; + rev = "25d54ea570ace2a3af68202b931501b25e268142"; + hash = "sha256-4CFiXuThqB5o/DOmnhvsUxtf8AFGKNgdkWs7rEMMSCw="; }; outputs = [ From 5fe3d787dc9ada718c3f283152a6131bd847e2a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=B7=F0=90=91=91=F0=90=91=B4=F0=90=91=95=F0=90=91=91?= =?UTF-8?q?=F0=90=91=A9=F0=90=91=A4?= Date: Wed, 24 Sep 2025 11:50:21 +0700 Subject: [PATCH 07/42] =?UTF-8?q?h2o:=202.3.0-rolling-2025-09-22=20?= =?UTF-8?q?=E2=86=92=202.3.0-rolling-2025-09-24?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/h2/h2o/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/h2/h2o/package.nix b/pkgs/by-name/h2/h2o/package.nix index ef743bf004bf..8eec731135f6 100644 --- a/pkgs/by-name/h2/h2o/package.nix +++ b/pkgs/by-name/h2/h2o/package.nix @@ -23,13 +23,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "h2o"; - version = "2.3.0-rolling-2025-09-22"; + version = "2.3.0-rolling-2025-09-24"; src = fetchFromGitHub { owner = "h2o"; repo = "h2o"; - rev = "25d54ea570ace2a3af68202b931501b25e268142"; - hash = "sha256-4CFiXuThqB5o/DOmnhvsUxtf8AFGKNgdkWs7rEMMSCw="; + rev = "74012bb501f14e61e5ecc1e9860bd66ba6789e0d"; + hash = "sha256-zEibiI3BdhaTty5vZ3PPXTbHIRLsE2iUiwI6hRZfy8A="; }; outputs = [ From 457ec30007005de877c7c1ac9d2faa8a44b7dda5 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 28 Sep 2025 21:50:59 +0200 Subject: [PATCH 08/42] python3Packages.psycopg: 3.2.19 -> 3.2.10 https://github.com/psycopg/psycopg/blob/3.2.10/docs/news.rst#current-release --- pkgs/development/python-modules/psycopg/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/psycopg/default.nix b/pkgs/development/python-modules/psycopg/default.nix index d50a40738b06..e2d80b6b48bb 100644 --- a/pkgs/development/python-modules/psycopg/default.nix +++ b/pkgs/development/python-modules/psycopg/default.nix @@ -34,13 +34,13 @@ let pname = "psycopg"; - version = "3.2.9"; + version = "3.2.10"; src = fetchFromGitHub { owner = "psycopg"; repo = "psycopg"; tag = version; - hash = "sha256-mMhfULdvqphwdEqynLNq+7XCNmqmf+zi1SGumC/6qAc="; + hash = "sha256-ZvqhvjDhrZ7uKi9fE/UYRaJblmfXXH6pYoUZ5u7cOu0="; }; patches = [ @@ -68,9 +68,6 @@ let # move into source root after patching postPatch = '' cd psycopg_c - - substituteInPlace pyproject.toml \ - --replace-fail "Cython >= 3.0.0, < 3.1.0" "Cython" ''; nativeBuildInputs = [ From 641f60cfe3ab2b442bb021f5a855914b5138a597 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 29 Sep 2025 02:37:24 +0200 Subject: [PATCH 09/42] obs-studio: 31.1.2 -> 32.0.1 --- ...ss-and-universal-access-for-file-URL.patch | 33 ------------------- .../applications/video/obs-studio/default.nix | 9 ++--- 2 files changed, 5 insertions(+), 37 deletions(-) delete mode 100644 pkgs/applications/video/obs-studio/Enable-file-access-and-universal-access-for-file-URL.patch diff --git a/pkgs/applications/video/obs-studio/Enable-file-access-and-universal-access-for-file-URL.patch b/pkgs/applications/video/obs-studio/Enable-file-access-and-universal-access-for-file-URL.patch deleted file mode 100644 index b0c9650ddb90..000000000000 --- a/pkgs/applications/video/obs-studio/Enable-file-access-and-universal-access-for-file-URL.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 0de0a90f8fe5e1e48fa4ec7aa7c825ef88770f9d Mon Sep 17 00:00:00 2001 -From: Ryan Foster -Date: Mon, 9 Sep 2019 23:55:02 -0400 -Subject: [PATCH] Enable file access and universal access for file URLs - -When loading a local file, instead of disabling CEF's web security, -enable file access and universal access for file URLs. This should allow -local files to make CORS requests without completely disabling CEF's -security model. ---- - obs-browser-source.cpp | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) - -diff --git a/obs-browser-source.cpp b/obs-browser-source.cpp -index 09b3017..1094340 100644 ---- a/plugins/obs-browser/obs-browser-source.cpp -+++ b/plugins/obs-browser/obs-browser-source.cpp -@@ -239,9 +239,12 @@ bool BrowserSource::CreateBrowser() - - #if ENABLE_LOCAL_FILE_URL_SCHEME && CHROME_VERSION_BUILD < 4430 - if (is_local) { -- /* Disable web security for file:// URLs to allow -- * local content access to remote APIs */ -- cefBrowserSettings.web_security = STATE_DISABLED; -+ /* Enable file access and universal access from file:// -+ * URLs to allow local content access to remote APIs */ -+ cefBrowserSettings.file_access_from_file_urls = -+ STATE_ENABLED; -+ cefBrowserSettings.universal_access_from_file_urls = -+ STATE_ENABLED; - } - #endif - auto browser = CefBrowserHost::CreateBrowserSync( diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix index 06b0b1f64d0e..850d6b5a520d 100644 --- a/pkgs/applications/video/obs-studio/default.nix +++ b/pkgs/applications/video/obs-studio/default.nix @@ -59,6 +59,7 @@ libdatachannel, libvpl, qrcodegencpp, + simde, nix-update-script, extra-cmake-modules, }: @@ -82,21 +83,19 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "obs-studio"; - version = "31.1.2"; + version = "32.0.1"; src = fetchFromGitHub { owner = "obsproject"; repo = "obs-studio"; rev = finalAttrs.version; - hash = "sha256-QZoIyjliVruDPZj8hzTABaDn+nCTVs5qQCdBLtSOKvI="; + hash = "sha256-99VAVV3hEMDI2R30OrX/in/9KtesUxMGOPg6yT5e4oM="; fetchSubmodules = true; }; separateDebugInfo = true; patches = [ - # Lets obs-browser build against CEF 90.1.0+ - ./Enable-file-access-and-universal-access-for-file-URL.patch ./fix-nix-plugin-path.patch ]; @@ -156,6 +155,8 @@ stdenv.mkDerivation (finalAttrs: { ++ optional browserSupport cef ++ optional withFdk fdk_aac; + propagatedBuildInputs = [ simde ]; + # Copied from the obs-linuxbrowser postUnpack = lib.optionalString browserSupport '' ln -s ${cef} cef From ec04cd3082e7dc3e9227f104bb53f732ff576b41 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 29 Sep 2025 02:38:41 +0200 Subject: [PATCH 10/42] obs-studio-plugins.input-overlay: 5.0.6 -> 5.1.0-unstable-2025-09-23 Fixes build with obs-studio 32. --- .../video/obs-studio/plugins/input-overlay.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/video/obs-studio/plugins/input-overlay.nix b/pkgs/applications/video/obs-studio/plugins/input-overlay.nix index d556e6838f57..1c9d80391b65 100644 --- a/pkgs/applications/video/obs-studio/plugins/input-overlay.nix +++ b/pkgs/applications/video/obs-studio/plugins/input-overlay.nix @@ -6,23 +6,22 @@ pkg-config, ninja, obs-studio, - libuiohook, qtbase, xorg, libxkbcommon, libxkbfile, - SDL2, + sdl3, }: stdenv.mkDerivation (finalAttrs: { pname = "obs-input-overlay"; - version = "5.0.6"; + version = "5.1.0-unstable-2025-09-23"; src = fetchFromGitHub { owner = "univrsal"; repo = "input-overlay"; - tag = finalAttrs.version; - hash = "sha256-ju4u7hhx+hTuq7Oh0DBPV8RRM8zqyyvYV74KymU0+2c="; + rev = "4d62e7d0c55f8ff62c3a0e7b1a8f3092086b23b7"; + hash = "sha256-cUULaOoV4fffEvsHkcG3lnFCIHSvnv3LHg+SDuuVLao="; fetchSubmodules = true; }; @@ -34,9 +33,8 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ obs-studio - libuiohook qtbase - SDL2 + sdl3 xorg.libX11 xorg.libXau xorg.libXdmcp @@ -57,6 +55,11 @@ stdenv.mkDerivation (finalAttrs: { sed -i '/set(CMAKE_CXX_FLAGS "-march=native")/d' 'source/CMakeLists.txt' ''; + preFixup = '' + # Remove broken uiohook development files + rm -r $out/lib/cmake $out/lib/pkgconfig + ''; + dontWrapQtApps = true; meta = { From 90f3af7b77986bc857d4ad2b127c121f1e3217e3 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 29 Sep 2025 02:39:22 +0200 Subject: [PATCH 11/42] obs-studio-plugins.waveform: fix build with obs-studio 32 --- .../video/obs-studio/plugins/waveform/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/applications/video/obs-studio/plugins/waveform/default.nix b/pkgs/applications/video/obs-studio/plugins/waveform/default.nix index 5439574f6421..00da28e8e36d 100644 --- a/pkgs/applications/video/obs-studio/plugins/waveform/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/waveform/default.nix @@ -20,6 +20,13 @@ stdenv.mkDerivation rec { hash = "sha256-Bg1n1yV4JzNFEXFNayNa1exsSZhmRJ0RLHDjLWmqGZE="; }; + postPatch = '' + substituteInPlace \ + src/source.hpp src/source.cpp src/source_generic.cpp \ + src/source_avx2.cpp src/source_avx.cpp \ + --replace circlebuf deque + ''; + nativeBuildInputs = [ cmake pkg-config From 2150ba297cd67bd77cc8bc2434a659b18e2d447b Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 29 Sep 2025 02:42:00 +0200 Subject: [PATCH 12/42] obs-studio-plugins.obs-ndi: remove Not maintained anymore and incompatible with obs-studio 32. Was replaced by distroav. --- .../video/obs-studio/plugins/default.nix | 2 - .../obs-studio/plugins/obs-ndi/default.nix | 62 ------------------- .../plugins/obs-ndi/hardcode-ndi-path.patch | 16 ----- 3 files changed, 80 deletions(-) delete mode 100644 pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix delete mode 100644 pkgs/applications/video/obs-studio/plugins/obs-ndi/hardcode-ndi-path.patch diff --git a/pkgs/applications/video/obs-studio/plugins/default.nix b/pkgs/applications/video/obs-studio/plugins/default.nix index d0cc348da0ec..96a0d0e83c81 100644 --- a/pkgs/applications/video/obs-studio/plugins/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/default.nix @@ -60,8 +60,6 @@ obs-mute-filter = callPackage ./obs-mute-filter.nix { }; - obs-ndi = qt6Packages.callPackage ./obs-ndi { }; - obs-noise = callPackage ./obs-noise.nix { }; obs-pipewire-audio-capture = callPackage ./obs-pipewire-audio-capture.nix { }; diff --git a/pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix b/pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix deleted file mode 100644 index e7b2784fff6e..000000000000 --- a/pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix +++ /dev/null @@ -1,62 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - obs-studio, - cmake, - qtbase, - ndi, - curl, -}: - -stdenv.mkDerivation rec { - pname = "obs-ndi"; - version = "4.14.1"; - - nativeBuildInputs = [ - cmake - qtbase - ]; - buildInputs = [ - obs-studio - qtbase - ndi - curl - ]; - - src = fetchFromGitHub { - owner = "Palakis"; - repo = "obs-ndi"; - rev = version; - sha256 = "sha256-ex/fZmZpFM6GTKNBQClzSf6Ns0Yts5+0PAmf5mIQCwc="; - }; - - patches = [ - ./hardcode-ndi-path.patch - ]; - - postPatch = '' - # Add path (variable added in hardcode-ndi-path.patch - sed -i -e s,@NDI@,${ndi},g src/plugin-main.cpp - - # Replace bundled NDI SDK with the upstream version - # (This fixes soname issues) - rm -rf lib/ndi - ln -s ${ndi}/include lib/ndi - ''; - - cmakeFlags = [ "-DENABLE_QT=ON" ]; - - env.NIX_CFLAGS_COMPILE = "-Wno-deprecated-declarations"; - - dontWrapQtApps = true; - - meta = with lib; { - description = "Network A/V plugin for OBS Studio"; - homepage = "https://github.com/Palakis/obs-ndi"; - license = licenses.gpl2; - maintainers = with maintainers; [ jshcmpbll ]; - platforms = platforms.linux; - hydraPlatforms = ndi.meta.hydraPlatforms; - }; -} diff --git a/pkgs/applications/video/obs-studio/plugins/obs-ndi/hardcode-ndi-path.patch b/pkgs/applications/video/obs-studio/plugins/obs-ndi/hardcode-ndi-path.patch deleted file mode 100644 index c8b400b682d8..000000000000 --- a/pkgs/applications/video/obs-studio/plugins/obs-ndi/hardcode-ndi-path.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/src/plugin-main.cpp b/src/plugin-main.cpp -index 0d94add..617af73 100644 ---- a/src/plugin-main.cpp -+++ b/src/plugin-main.cpp -@@ -244,10 +244,7 @@ const NDIlib_v4 *load_ndilib() - if (!path.isEmpty()) { - locations << path; - } --#if defined(__linux__) || defined(__APPLE__) -- locations << "/usr/lib"; -- locations << "/usr/local/lib"; --#endif -+ locations << "@NDI@/lib"; - for (auto location : locations) { - path = QDir::cleanPath( - QDir(location).absoluteFilePath(NDILIB_LIBRARY_NAME)); From 6bb697f1fff2750ec22fe88bf488c5c9a7edfd99 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 29 Sep 2025 02:43:08 +0200 Subject: [PATCH 13/42] obs-studio-plugins.obs-urlsource: remove Not maintained anymore and incompatible with obs-studio 32. --- .../video/obs-studio/plugins/default.nix | 2 - .../obs-studio/plugins/obs-urlsource.nix | 95 ------------------- 2 files changed, 97 deletions(-) delete mode 100644 pkgs/applications/video/obs-studio/plugins/obs-urlsource.nix diff --git a/pkgs/applications/video/obs-studio/plugins/default.nix b/pkgs/applications/video/obs-studio/plugins/default.nix index 96a0d0e83c81..5eeb4b7d0c90 100644 --- a/pkgs/applications/video/obs-studio/plugins/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/default.nix @@ -94,8 +94,6 @@ obs-tuna = qt6Packages.callPackage ./obs-tuna { }; - obs-urlsource = qt6Packages.callPackage ./obs-urlsource.nix { }; - obs-vaapi = callPackage ./obs-vaapi { }; obs-vertical-canvas = qt6Packages.callPackage ./obs-vertical-canvas.nix { }; diff --git a/pkgs/applications/video/obs-studio/plugins/obs-urlsource.nix b/pkgs/applications/video/obs-studio/plugins/obs-urlsource.nix deleted file mode 100644 index e7f6abfbd38e..000000000000 --- a/pkgs/applications/video/obs-studio/plugins/obs-urlsource.nix +++ /dev/null @@ -1,95 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - cmake, - curl, - git, - obs-studio, - pugixml, - qtbase, - writeScript, -}: - -let - websocketpp = fetchFromGitHub { - owner = "zaphoyd"; - repo = "websocketpp"; - rev = "0.8.2"; - sha256 = "sha256-9fIwouthv2GcmBe/UPvV7Xn9P2o0Kmn2hCI4jCh0hPM="; - }; - - lexbor = fetchFromGitHub { - owner = "lexbor"; - repo = "lexbor"; - rev = "v2.3.0"; - sha256 = "sha256-s5fZWBhXC0fuHIUk1YX19bHagahOtSLlKQugyHCIlgI="; - }; - - asio = fetchFromGitHub { - owner = "chriskohlhoff"; - repo = "asio"; - rev = "asio-1-28-0"; - sha256 = "sha256-dkiUdR8FgDnnqdptaJjE4rvNlgpC5HZl6SQQ5Di2C2s="; - }; -in -stdenv.mkDerivation rec { - pname = "obs-urlsource"; - version = "0.3.7"; - - src = fetchFromGitHub { - owner = "locaal-ai"; - repo = "obs-urlsource"; - rev = version; - sha256 = "sha256-ZWwD8jJkL1rAUeanD4iChcgpnJaC5pPo36Ot36XOSx8="; - fetchSubmodules = true; - }; - - nativeBuildInputs = [ - cmake - git - ]; - buildInputs = [ - curl - obs-studio - pugixml - qtbase - ]; - dontWrapQtApps = true; - - # Update websocketpp and lexabor configurations to use pre-fetched sources - postPatch = '' - sed -i 's|URL .*|SOURCE_DIR "${websocketpp}"\n DOWNLOAD_COMMAND ""|' cmake/FetchWebsocketpp.cmake - sed -i \ - -e 's|GIT_REPOSITORY .*|SOURCE_DIR "${lexbor}"|' \ - -e 's|GIT_TAG .*|DOWNLOAD_COMMAND ""\n UPDATE_COMMAND ""|' \ - cmake/BuildLexbor.cmake - ''; - - postInstall = '' - rm -rf $out/lib/cmake - ''; - - NIX_CFLAGS_COMPILE = [ - "-I${websocketpp}" - "-I${asio}/asio/include" - ]; - - cmakeFlags = [ - # Prevent deprecation warnings from failing the build - (lib.cmakeOptionType "string" "CMAKE_CXX_FLAGS" "-Wno-error=deprecated-declarations") - (lib.cmakeBool "ENABLE_QT" true) - (lib.cmakeBool "USE_SYSTEM_CURL" true) - (lib.cmakeBool "USE_SYSTEM_PUGIXML" true) - (lib.cmakeBool "CMAKE_COMPILE_WARNING_AS_ERROR" false) - "-Wno-dev" - ]; - - meta = with lib; { - description = "OBS plugin to fetch data from a URL or file, connect to an API or AI service, parse responses and display text, image or audio on scene"; - homepage = "https://github.com/locaal-ai/obs-urlsource"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Only; - inherit (obs-studio.meta) platforms; - }; -} From 65dd3d27fbc8bbedf2bc1fcdc885653dd0cf6810 Mon Sep 17 00:00:00 2001 From: Fugi Date: Mon, 29 Sep 2025 18:15:29 +0200 Subject: [PATCH 14/42] joplin-desktop: explicitly add darwin to platforms --- pkgs/by-name/jo/joplin-desktop/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/jo/joplin-desktop/package.nix b/pkgs/by-name/jo/joplin-desktop/package.nix index c10240aef404..8c90b9572407 100644 --- a/pkgs/by-name/jo/joplin-desktop/package.nix +++ b/pkgs/by-name/jo/joplin-desktop/package.nix @@ -237,6 +237,6 @@ stdenv.mkDerivation (finalAttrs: { maintainers = with maintainers; [ fugi ]; - inherit (electron.meta) platforms; + platforms = electron.meta.platforms ++ lib.platforms.darwin; }; }) From 8cd136856afca37358399c208afbd129b0aa5a71 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 1 Oct 2025 09:06:22 +0200 Subject: [PATCH 15/42] python313Packages.pylast: 5.5.0 -> 6.0.0 Diff: https://github.com/pylast/pylast/compare/5.5.0...6.0.0 Changelog: https://github.com/pylast/pylast/releases/tag/6.0.0 --- pkgs/development/python-modules/pylast/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/pylast/default.nix b/pkgs/development/python-modules/pylast/default.nix index e5a196a38858..3a010b5fe456 100644 --- a/pkgs/development/python-modules/pylast/default.nix +++ b/pkgs/development/python-modules/pylast/default.nix @@ -6,23 +6,20 @@ hatch-vcs, hatchling, httpx, - importlib-metadata, + pytest-random-order, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { pname = "pylast"; - version = "5.5.0"; + version = "6.0.0"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "pylast"; repo = "pylast"; tag = version; - hash = "sha256-mPdFG3wqdAyluD37cy2q6oO/x9NgXpOb57s4nU05EzQ="; + hash = "sha256-mwPiHTLFvaCFPZGqi0+T223Ickbm5JP2MJj4gqaj/qo="; }; build-system = [ @@ -30,9 +27,10 @@ buildPythonPackage rec { hatchling ]; - dependencies = [ httpx ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; + dependencies = [ httpx ]; nativeCheckInputs = [ + pytest-random-order pytestCheckHook flaky ]; From 253a64827a4f25a1760b017563c816b80cb852d5 Mon Sep 17 00:00:00 2001 From: Tom McLaughlin Date: Mon, 29 Sep 2025 02:14:04 -0700 Subject: [PATCH 16/42] octave.withPackages: fix null reference on darwin --- pkgs/development/interpreters/octave/build-env.nix | 11 ++++++++--- pkgs/development/interpreters/octave/default.nix | 7 +++++++ 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/octave/build-env.nix b/pkgs/development/interpreters/octave/build-env.nix index d83003aa8a8a..373567d92cc5 100644 --- a/pkgs/development/interpreters/octave/build-env.nix +++ b/pkgs/development/interpreters/octave/build-env.nix @@ -19,6 +19,11 @@ let packages = computeRequiredOctavePackages extraLibs; + # glibcLocalesUtf8 is null on darwin + localeArchiveArgs = lib.optionalString (glibcLocalesUtf8 != null) '' + --set LOCALE_ARCHIVE "${glibcLocalesUtf8}/lib/locale/locale-archive" + ''; + in buildEnv { name = "${octave.name}-env"; @@ -47,7 +52,7 @@ buildEnv { if [ -x $prg ]; then makeWrapper "${octave}/bin/$prg" "$out/bin/$prg" \ --set OCTAVE_SITE_INITFILE "$out/share/octave/site/m/startup/octaverc" \ - --set LOCALE_ARCHIVE "${glibcLocalesUtf8}/lib/locale/locale-archive" + ${localeArchiveArgs} fi done cd $out @@ -87,9 +92,9 @@ buildEnv { '' + postBuild; - inherit (octave) meta; + inherit (octave) meta version; - passthru = octave.passthru // { + passthru = (removeAttrs octave.passthru [ "tests" ]) // { interpreter = "$out/bin/octave"; inherit octave; env = stdenv.mkDerivation { diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix index 9eacfd0b8566..68d7a853467f 100644 --- a/pkgs/development/interpreters/octave/default.nix +++ b/pkgs/development/interpreters/octave/default.nix @@ -7,6 +7,7 @@ ncurses, perl, flex, + testers, texinfo, qhull, libsndfile, @@ -226,6 +227,12 @@ stdenv.mkDerivation (finalAttrs: { withPackages = import ./with-packages.nix { inherit buildEnv octavePackages; }; pkgs = octavePackages; interpreter = "${finalAttrs.finalPackage}/bin/octave"; + tests = { + wrapper = testers.testVersion { + package = finalAttrs.finalPackage.withPackages (ps: [ ps.doctest ]); + command = "octave --version"; + }; + }; }; meta = { From d1705130b11a09381634176b531bca6a0c7a405e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 1 Oct 2025 12:49:05 +0000 Subject: [PATCH 17/42] octave: 10.2.0 -> 10.3.0 --- pkgs/development/interpreters/octave/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix index 9eacfd0b8566..eabbafa266ca 100644 --- a/pkgs/development/interpreters/octave/default.nix +++ b/pkgs/development/interpreters/octave/default.nix @@ -97,12 +97,12 @@ let allPkgs = pkgs; in stdenv.mkDerivation (finalAttrs: { - version = "10.2.0"; + version = "10.3.0"; pname = "octave"; src = fetchurl { url = "mirror://gnu/octave/octave-${finalAttrs.version}.tar.gz"; - sha256 = "sha256-B/ttkznS81BzXJFnG+jodNFgAYzGtoj579nVWNI39p8="; + sha256 = "sha256-L8s43AYuRA8eBsBpu8qEDtRtzI+YPkc+FVj8w4OE7ms="; }; postPatch = '' From e42871d8d881138d1045bf271d01e1a613944a63 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 1 Oct 2025 12:55:42 +0000 Subject: [PATCH 18/42] qtcreator: 17.0.1 -> 17.0.2 --- pkgs/development/tools/qtcreator/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/qtcreator/default.nix b/pkgs/development/tools/qtcreator/default.nix index 8d4d3a3d4555..603c69a4fc9f 100644 --- a/pkgs/development/tools/qtcreator/default.nix +++ b/pkgs/development/tools/qtcreator/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "qtcreator"; - version = "17.0.1"; + version = "17.0.2"; src = fetchurl { url = "mirror://qt/official_releases/${finalAttrs.pname}/${lib.versions.majorMinor finalAttrs.version}/${finalAttrs.version}/qt-creator-opensource-src-${finalAttrs.version}.tar.xz"; - hash = "sha256-9WcYCEdnBzkami7bmWPqSmtrkMeMvnTs4aygxrQuUYQ="; + hash = "sha256-sOEY+fuJvnF2KLP5JRwpX6bfQfqLfYEhbi6tg1XlWhM="; }; nativeBuildInputs = [ From a8a9f6dd7f6a7cafc2e8ca6b8d1848bba576b400 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 1 Oct 2025 15:12:09 +0200 Subject: [PATCH 19/42] matrix-synapse: 1.138.2 -> 1.139.0 ChangeLog: https://github.com/element-hq/synapse/releases/tag/v1.139.0 --- pkgs/by-name/ma/matrix-synapse-unwrapped/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ma/matrix-synapse-unwrapped/package.nix b/pkgs/by-name/ma/matrix-synapse-unwrapped/package.nix index a517d56f44eb..164745df9347 100644 --- a/pkgs/by-name/ma/matrix-synapse-unwrapped/package.nix +++ b/pkgs/by-name/ma/matrix-synapse-unwrapped/package.nix @@ -14,19 +14,19 @@ python3Packages.buildPythonApplication rec { pname = "matrix-synapse"; - version = "1.138.2"; + version = "1.139.0"; format = "pyproject"; src = fetchFromGitHub { owner = "element-hq"; repo = "synapse"; rev = "v${version}"; - hash = "sha256-hnF0RPVH+5OBUZnaYCleTNLJYl9a+nf2PzJnLaJ5kzI="; + hash = "sha256-L9oTTdGF//srC3sDrI8aNMjc9lOkof+J2VLFy091HBo="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit pname version src; - hash = "sha256-aUZUg8+1UlDzsxJN87Bk/DjD5WFcvHGVBRf1rIXKOZ4="; + hash = "sha256-PUwSg//1xAMyv0HOMt4YFR680fQ+7YAcSJ0vmlPyCzQ="; }; postPatch = '' From 3fc1653806623bdebd9ec466c6358252873b2768 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 1 Oct 2025 17:03:00 +0000 Subject: [PATCH 20/42] inputplumber: 0.64.0 -> 0.66.0 --- pkgs/by-name/in/inputplumber/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/in/inputplumber/package.nix b/pkgs/by-name/in/inputplumber/package.nix index 2a6650de5dd2..2047a8e88332 100644 --- a/pkgs/by-name/in/inputplumber/package.nix +++ b/pkgs/by-name/in/inputplumber/package.nix @@ -10,16 +10,16 @@ rustPlatform.buildRustPackage rec { pname = "inputplumber"; - version = "0.64.0"; + version = "0.66.0"; src = fetchFromGitHub { owner = "ShadowBlip"; repo = "InputPlumber"; tag = "v${version}"; - hash = "sha256-Ai2mozqw8n+L6Yv04OLyiADmXBT4k573qzazePsmfP4="; + hash = "sha256-9aCCRjXJZcjfRrZJldaVKbk6FYTYv73XEvUeCeCPmfk="; }; - cargoHash = "sha256-oiEBOFDiOKPFsqZcW98hi1xiKEbo2YNXv5Cw1jCg5vw="; + cargoHash = "sha256-JBfAsLN9GhvzVi/lQumqdWwujLI4rXLowiUOoApnWUg="; nativeBuildInputs = [ pkg-config From d20c096e21f1b8fb08f421f260c6a5fcc7450a78 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 1 Oct 2025 19:34:40 +0000 Subject: [PATCH 21/42] mympd: 22.0.4 -> 22.1.0 --- pkgs/by-name/my/mympd/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/my/mympd/package.nix b/pkgs/by-name/my/mympd/package.nix index 215d93172dde..7b9bb067acec 100644 --- a/pkgs/by-name/my/mympd/package.nix +++ b/pkgs/by-name/my/mympd/package.nix @@ -18,13 +18,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "mympd"; - version = "22.0.4"; + version = "22.1.0"; src = fetchFromGitHub { owner = "jcorporation"; repo = "myMPD"; rev = "v${finalAttrs.version}"; - sha256 = "sha256-sVZj79NUrymwi8L8akqyGGKnm4OAKr3Qf/K5U2iqm5E="; + sha256 = "sha256-/PJdyrdJnVm6qYW7O6l2qsv5QlRa37FGZPTGGv4RIgs="; }; nativeBuildInputs = [ From 5e61077d833b8306d8a0d704450dfe4162fa57e9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 1 Oct 2025 22:09:01 +0000 Subject: [PATCH 22/42] thunderbird-latest-bin-unwrapped: 143.0 -> 143.0.1 --- .../thunderbird-bin/release_sources.nix | 794 +++++++++--------- 1 file changed, 397 insertions(+), 397 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix index 4a748a5e852a..c38825023973 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix @@ -1,1193 +1,1193 @@ { - version = "143.0"; + version = "143.0.1"; sources = [ { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/af/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/af/thunderbird-143.0.1.tar.xz"; locale = "af"; arch = "linux-x86_64"; - sha256 = "7377aab4e38e3e9c3f2d3df8d5877018a74e4ba4e5b979775f6f41039d471283"; + sha256 = "eb96c74840f957b29ce055f548d621f4dbbd30a0c31d2225c38852b18fa1635e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/ar/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/ar/thunderbird-143.0.1.tar.xz"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "9469164bc1824272827e567576e45e6a49073ad79911160e0c458d431ff0996a"; + sha256 = "3d120c6be88235a6471fefa10476a1857d1994554f5ddb54042260f7204b12d7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/ast/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/ast/thunderbird-143.0.1.tar.xz"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "ee7de1da9b03622945959d2d858a9fd42a68676eced775c2e6c6266fcfe0aaae"; + sha256 = "2019429d4124fffdf3271967f759676c4b9dcc72065ae6bcf31c5a77814bfd37"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/be/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/be/thunderbird-143.0.1.tar.xz"; locale = "be"; arch = "linux-x86_64"; - sha256 = "30be0ea95c283c55748389a821bb826ff70303afcfed61a0bb48bbe4a1b88c35"; + sha256 = "248a799c5e45d40d684690bcf556319e0751e67189950e1acabac9c8f24f27dd"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/bg/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/bg/thunderbird-143.0.1.tar.xz"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "e0b8342280e9503038112bacf89d26f2b1dc717d7b2f1df1767269c70631d94b"; + sha256 = "1e11141519e57f2df3675e2f4a9530adbcfd8a8e60ec0edee472fbc1b04fc67d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/br/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/br/thunderbird-143.0.1.tar.xz"; locale = "br"; arch = "linux-x86_64"; - sha256 = "a7607df012d5d93984beaabcf916765b917717c6c0a988551f179d1d51476d11"; + sha256 = "9f7ae4984cadf5a87e1fd214e64d9a71e5877d6d29929d356740d632b3de2600"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/ca/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/ca/thunderbird-143.0.1.tar.xz"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "4197f3c9fec3f751d388d489c9510c3f6506fb9a22336b27835b246c812c61f8"; + sha256 = "892f3b136e486fa2c42d0f1b822139641cb76b03ca25cd2257fd315b1b6093bd"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/cak/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/cak/thunderbird-143.0.1.tar.xz"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "f49402f1638cb6c81cd7d08b78d109906256133e68f5c0d6a83850cb3dc17627"; + sha256 = "febcd1c02e39ed1f848ba44d63036e1f4a7a58b4fd694a281de9a6a2229a5337"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/cs/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/cs/thunderbird-143.0.1.tar.xz"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "4b631d121f07ebe4d3e2e3312ef488a6030e9de0906aef46dd6372a1ccf6f2e8"; + sha256 = "7a1bcd0cb53e19be2c4690ab9742c8a2000adbc0a7d9fad9c34f76a69ff0b2ab"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/cy/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/cy/thunderbird-143.0.1.tar.xz"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "087c14deb33f92c1b22578ac84856ba0f5d8f593ec99c34ed723c12234b79c37"; + sha256 = "2e266fe8552297f62a53578d7b199beed77a0e61079f77aa00e0cc81d55d2a51"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/da/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/da/thunderbird-143.0.1.tar.xz"; locale = "da"; arch = "linux-x86_64"; - sha256 = "f6d5ecb1ed36bff7462942a12a12decc4c23bca7b02e2b8e38e23d41d5534931"; + sha256 = "f121888a0cc498112528f910f02f7709b7480c9417bad76fdb3a45948c65a85c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/de/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/de/thunderbird-143.0.1.tar.xz"; locale = "de"; arch = "linux-x86_64"; - sha256 = "c92ce16575a21e96feefe67c8d1d8de597dde99fdc8ea48d60ef2b01bfe2d8bc"; + sha256 = "e4279aa3cb03291d158fa16e63a47cd13b52b1bd82503955f215ac5e0962f43d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/dsb/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/dsb/thunderbird-143.0.1.tar.xz"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "62cf2d4d9ddc51d6a5a9cdc6fd6d5303421982506c60b12b0565dc621fb1e7a5"; + sha256 = "47b9f677fef9b793bf1c5f3e0eae4851c33f9cd24184467f1551c7819f1ae0d6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/el/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/el/thunderbird-143.0.1.tar.xz"; locale = "el"; arch = "linux-x86_64"; - sha256 = "e258aff8ec48985c69ec09f5fc1c7a73d337fcf84f94579b5372efb4939f0f01"; + sha256 = "68765c41868729c471d82781a9d869ab24e7ab675a523078b9e00b043fdf27fa"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/en-CA/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/en-CA/thunderbird-143.0.1.tar.xz"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "7f31a51606e7cccc231258ccbacf0e4bb7f7d16a128d0e5c0cfe893cd4951f15"; + sha256 = "346f2e03db29e39613a4ab3dfe75efc4931913ffbb8c31dc2556721a8efbd6cd"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/en-GB/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/en-GB/thunderbird-143.0.1.tar.xz"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "3e2faa274051559953281b81c34714adda3c172a90c9e2377ea498cd14f4f346"; + sha256 = "c6b673764f51d18f0aac1a1ac9eebb6ac1cae16d17db9dfaea73c145a6d8874c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/en-US/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/en-US/thunderbird-143.0.1.tar.xz"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "3418c16b57a87815acc5ba78b178256bfa69c748e57e8f0d1cf30e2104156efb"; + sha256 = "bf54e51cc92f7a4455b437b64ffc3b4a9bedd1c22da91cf92d4724fa5dea02b7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/es-AR/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/es-AR/thunderbird-143.0.1.tar.xz"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "eef94e2c7d7e274744a8980420fe054ac6ead685e721281991f0dcf2cd184ef7"; + sha256 = "264a801c412575a7bc63ecb9a1b20cd92673ae34924fb08c25bb79aeb8207c0f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/es-ES/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/es-ES/thunderbird-143.0.1.tar.xz"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "d72b93753d761c22f46b9e5b877d8af532e08494106bce7af2c0094eaa63a80f"; + sha256 = "1838a352be56c2a20755a50ed19b7125dca7017cff4bacbbd5b80a67e7572fbd"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/es-MX/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/es-MX/thunderbird-143.0.1.tar.xz"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "497ed25bb23b0c89aebe0eab5644eface92eff64250ced98ed48c7b1e645ee9b"; + sha256 = "1a22275a0ba7985637167af1abb4677b00328e6a548abb0ff4a1d553973c66e9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/et/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/et/thunderbird-143.0.1.tar.xz"; locale = "et"; arch = "linux-x86_64"; - sha256 = "460c926698eaea5a78e64665a0d4973aed480629a75419f09a7df58b2a835409"; + sha256 = "a36d5d2ccafd543d4fe5ad979caf762f625c142daa47e0207b847fd8bc63bc81"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/eu/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/eu/thunderbird-143.0.1.tar.xz"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "e5d768c09b1a8295606d50c91afa7c8ee0cd20c05955229447ce64b4e9436f98"; + sha256 = "3932f06666f8e168efbc97c27ababc09e552e2d486ec3fb5227c2f77658f3807"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/fi/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/fi/thunderbird-143.0.1.tar.xz"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "7a64fa7621e964bf005c478adebc06a5d9a4834f9bac0bc7d934a51c5e125f7e"; + sha256 = "933d82aaf1e73aa1e4a76930e3d4ff96e3b7e6ddfdad09b0cb6908a11f1fc8e0"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/fr/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/fr/thunderbird-143.0.1.tar.xz"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "613276fa8b0adfea679c04026856a738dff8bc0321c92b1d74759621f77d5b05"; + sha256 = "35191e2d6ae4ec6a76aa713e682388912777b05af9f0169116c27c28cf06742f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/fy-NL/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/fy-NL/thunderbird-143.0.1.tar.xz"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "f939314fa4903e6acd297f281a13a6bb6db06a86cc124d823a0822ac3761b1cc"; + sha256 = "b0d6fbd68c6b06aef1a825422fcd4877077306735f2a888c7d91c7f52fe55de4"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/ga-IE/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/ga-IE/thunderbird-143.0.1.tar.xz"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "a88c7ea5f97aedad2f97c531d75d0fb4c59881acccf0c11bac47419f66574bb3"; + sha256 = "4f868cbc7b3ea3ed8e8ac497d1758a96bdecf16db4d5cd8281fe11bd031e2ab1"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/gd/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/gd/thunderbird-143.0.1.tar.xz"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "51886b3184fff523056c3a8f92aae2b1480b548c5230d18c0a22893897ebda3f"; + sha256 = "e5ab7d353c9fc3bd642be2b27ecf8dd4d3a43e35e84759a58a751411a2f053a9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/gl/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/gl/thunderbird-143.0.1.tar.xz"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "9c56f12eeea4d57e9dcaf72aa0f9bb286217bd9364f3adaa98f3457960bd686c"; + sha256 = "de518d20ee05c53a9a6e554ebb59e67c91355c42b115b37032209baa5bec57d7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/he/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/he/thunderbird-143.0.1.tar.xz"; locale = "he"; arch = "linux-x86_64"; - sha256 = "ab38c4780557dae7acc040b4b2ce251c140e207d97205645f3c3d7eaa7897af8"; + sha256 = "269e09328a9e9d3d0ce20af51ac6088ea0a3449eb18559269f3ff25182ffefff"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/hr/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/hr/thunderbird-143.0.1.tar.xz"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "d9fd944f4e12b3d33e3fc1e6b1b086036fbed13adaadaf27b85175c8ebda3f9f"; + sha256 = "1506b3402d48d74d495cadd080037a4341c1fa2ac5fe35f28f71e9242bbe024a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/hsb/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/hsb/thunderbird-143.0.1.tar.xz"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "6e978fbc9f4d1571ca3dff090533b8d8b67e8ed3090dd5d1df10353062861bad"; + sha256 = "e1e9bda516853a6a9633b7acab3b2348dc7e95ba323781cbe77e0f3b0405edc7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/hu/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/hu/thunderbird-143.0.1.tar.xz"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "c199ed1153c6df7862990a6ab441fcbf1fcd059a42a4ae872e54e69f24f6a1f0"; + sha256 = "d1ffb77a4eb7d6a2aa81a9122f544110285e13d07adab0ad61b5e82b9e5c35e9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/hy-AM/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/hy-AM/thunderbird-143.0.1.tar.xz"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "2f2a2e7908d916c154f690b4052dc98f2a25031a6a62447c5b4d4f6213a325f2"; + sha256 = "4aab75bdfc7a18cd19af0b9dfafe9192373c0c0f39588025219c7a71c5e6138b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/id/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/id/thunderbird-143.0.1.tar.xz"; locale = "id"; arch = "linux-x86_64"; - sha256 = "68064ba31789ced09708c4ca039ab4ce9f03cca73e4cf138c343a3c1a6d2a098"; + sha256 = "2b1d4f3dac6316c3bf4d3f2433116deca8db0c9e14d0e6ccb645870331851da5"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/is/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/is/thunderbird-143.0.1.tar.xz"; locale = "is"; arch = "linux-x86_64"; - sha256 = "a19ff6c5b82a20f0157a6ac7e8af1c5188e7ff284c8c704fc72c2156a04f9ddc"; + sha256 = "7249c6d698a9cdd4e9df414f7e7f7873cd534372ffe23ed7b134f53edf79fa34"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/it/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/it/thunderbird-143.0.1.tar.xz"; locale = "it"; arch = "linux-x86_64"; - sha256 = "4ec4b7505b04fa363636ef3259950ddc2f8c4ae48ebebf07913cf295ed393297"; + sha256 = "b54fb861ef8febf6b14505f4a8bcb758abb3ec6517003dba8abf1b074ce44065"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/ja/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/ja/thunderbird-143.0.1.tar.xz"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "b7e821fbf3a085e5f1cbe2706c1e1de087c3778080ab27788899c24020b64111"; + sha256 = "11dbd6393ffe5fd0023266d204610a6697c0bb31a493e3166c62e00b90f8e385"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/ka/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/ka/thunderbird-143.0.1.tar.xz"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "b47a4c1dc8cd120ec15fb58cc26a35368b14ff769167d5c3c0dc006a1a9e97a1"; + sha256 = "c4941d89458d45b6ad51f1b7ac775ef57ef2ec18c29e1de69587959cd2fd8425"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/kab/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/kab/thunderbird-143.0.1.tar.xz"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "967ecc3d9ad5410b40fdd40053a072f9df84e7455ff2e31a2667a22de454b010"; + sha256 = "cf280d6b3d1fe2c364d70fc9dc110594fb06a4ddfd64e2b4009452b81cbc67c0"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/kk/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/kk/thunderbird-143.0.1.tar.xz"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "018d7a23f2549dd4a9fa3810a35de5d54e4202573fce66a04fd807e2b1c6aa56"; + sha256 = "9c82ee099d776d1396055223cecc1e2c706941e25af258ef9379bd74a1af9dca"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/ko/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/ko/thunderbird-143.0.1.tar.xz"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "e081e94212af1bf408450ba2ae7661c56e130ac34dd6bd02305905ef275bad25"; + sha256 = "a44a3098ab2447cd78c654bd9dbd11be0c97a54478f3ee5f3493dbf182eba345"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/lt/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/lt/thunderbird-143.0.1.tar.xz"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "b07a226575da1952842ab6b4e885c0474238e206dd6bb76c0c758acb97ebb7e0"; + sha256 = "75fab1cde72fc832e4ed70d6a8dbb89cbe002eed397ccc717347beb39708064c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/lv/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/lv/thunderbird-143.0.1.tar.xz"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "8828217d14075ed58964bd6cefaa3a2c6094d26ada6146764c62d24329791e98"; + sha256 = "f0bdec833209a1fca1fe62896305fca8860422da1bd2564267cbc21be4b123ec"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/ms/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/ms/thunderbird-143.0.1.tar.xz"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "3ff3de15ce80bde4d159e388990ff06fb654b9c7c1fdd67130e51e1c6743972e"; + sha256 = "af920cd50f8118353db51efa21fe9a64e0064816d7a935d1f192b09439ce7a58"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/nb-NO/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/nb-NO/thunderbird-143.0.1.tar.xz"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "beeec9459ff9ea2636280c71ff160fdf226d6379d8acefc44e6f9f03f1bbec2a"; + sha256 = "42c7fb74de2fa4922a68bd57f50552cc5eb322736e397798214d394d1dc89174"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/nl/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/nl/thunderbird-143.0.1.tar.xz"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "4b64580f696913a01836a6f5e035a3e976c64991a4f1fd121c5f774a44d840eb"; + sha256 = "bfcfc099893c1d13a0e7967a818391f3972fb8aed684f178d0b7f911aedb002e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/nn-NO/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/nn-NO/thunderbird-143.0.1.tar.xz"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "26aab56128827391074c779f9bba9aec7001c1a583b0056850f229b8d521feb4"; + sha256 = "98f8f3adcf2de72b9754e58416c7a5fea80687ff7bcb79c94bdfaea6108653c8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/pa-IN/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/pa-IN/thunderbird-143.0.1.tar.xz"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "50c5e225a340f779ecf816f8b365073385966bee1c2c0c73e4abc64f4c2a2080"; + sha256 = "064bee1ab7126dcf7acd699764bb836a9ce4e33f7f33e11b26c4ae2806de8085"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/pl/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/pl/thunderbird-143.0.1.tar.xz"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "9b6d3c99de127a3278677407e2c8618f117522dc2c9c1834c622edf26232e324"; + sha256 = "c35d131b9b061ae728edf63b6101cad6fcb8e754eaa7d4dde7be72a09f633adf"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/pt-BR/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/pt-BR/thunderbird-143.0.1.tar.xz"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "241da40718ebe9b5b16daf88ca4297df0329b68ec86fb920099fd13f924975c2"; + sha256 = "e55e4b97295a7e2ed59868f5196db1dbe14dccbf773d435f58030516d7d682f3"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/pt-PT/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/pt-PT/thunderbird-143.0.1.tar.xz"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "84e3e20196237e9ea64aa1343a3b17aac5e4e01fb54d5079a87d03130bdbc3c7"; + sha256 = "8f20181843498a6cebff92101903aa6a72205fd73e1b2cdd74c4d8aa2a3654b7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/rm/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/rm/thunderbird-143.0.1.tar.xz"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "2f4f2074bf4b88671726f3ae97bc34d8423849575f2470dc43848e5a37643c00"; + sha256 = "aa17b1357bcdfb0b26c4c9cee4572ce0a6766fc0d4b53d3320a8f780f2f8d61a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/ro/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/ro/thunderbird-143.0.1.tar.xz"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "6f1f150acd85bec19070f75fec169088b682249f9a561dfbf83ebc7a89fcc21e"; + sha256 = "3938179d5fd0953efc590728183356f0d5e978af2d2a72638cd2e948fbe22a2c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/ru/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/ru/thunderbird-143.0.1.tar.xz"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "7e2e1cfdb15ead62bc0de468099e1f440c7ee5fe0e2d3957e12f0b4c125bb0cc"; + sha256 = "ac06572dd4d6d1f348c83fff1b8df0eb73ed308eb31602d5b19e83b6c9bd4da2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/sk/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/sk/thunderbird-143.0.1.tar.xz"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "80ebf9aa4594d7741f2a0cce75f2e6fe86face6d10cf412f842b390787eb6626"; + sha256 = "69b22edf77a22c96390c93eb17e9bbe4dea984d59a296b259540fa56765afcf6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/sl/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/sl/thunderbird-143.0.1.tar.xz"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "4cf49cf442db7b08c2b0c7d2e098c001fbef03797a2d4962076387997b21bace"; + sha256 = "e76807b25bc86aafb223cc05f68fb96bd23b90d307a41533f15d088fda221586"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/sq/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/sq/thunderbird-143.0.1.tar.xz"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "ae2607d8293d0e4de5c614662f0de2ffd485c2204dfbace7a5fe68a7c5787e6e"; + sha256 = "8153e80bda06ad7497517bb3665c0797ccd5d1ad186623f53f1a90d5ff51a278"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/sr/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/sr/thunderbird-143.0.1.tar.xz"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "13dea8b7eab94c39642c9b0d131800a9faa2a1116772a1b7e20e653a34466f58"; + sha256 = "6b27a28142d211b696c85ae5e6b916865b4fefb2e7dce4c5fc951186ecd6f322"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/sv-SE/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/sv-SE/thunderbird-143.0.1.tar.xz"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "2d82d11eebd85a0b7edcc765c4c145b819acc94fff09aa2c3df78246ad5b4273"; + sha256 = "4f25dd915beac16e7721702e741e361c6893ac811b8ddf304d01638dc6cd9697"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/th/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/th/thunderbird-143.0.1.tar.xz"; locale = "th"; arch = "linux-x86_64"; - sha256 = "02d85e6aaf1a9f1746bf09a7fa31ac742a4ebfca3d4d4a44ba595995cb714477"; + sha256 = "56ffa8c1da004cbe581d730070b10bf71932f61ef9d3934bfb1b8769451efb11"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/tr/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/tr/thunderbird-143.0.1.tar.xz"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "5cf3c5b31e26009ce347086541447ef0d8feedad70b8464d60755bd6d02c5d80"; + sha256 = "1a1b27bd5c7b992f7b28d6d07c806c7c57867ea01732141983b3d9318b2d6ffe"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/uk/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/uk/thunderbird-143.0.1.tar.xz"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "331ac10255d5dabc958bfc70b45ecb12f7f5abb328fb5b998e5e3c6c1e5d818a"; + sha256 = "c27f209c46c331c314d84278f79d0eaab3cb5ec8107de8a279dcc0434baeeea2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/uz/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/uz/thunderbird-143.0.1.tar.xz"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "e193920f46df76d17ec17fdc269845945f978480d18798fb4c6b2fdfd658fd91"; + sha256 = "6893a8e9b2e97ac10271811ef56f3423ca42376b56d132d078d87152e1ff33ee"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/vi/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/vi/thunderbird-143.0.1.tar.xz"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "4a4fec9e7fb8893b4130a7f80bb18dcb7d81038788d6751c532a8e0748a5a39a"; + sha256 = "4254641267f5582a85d4a335be2205aa04a099fd35a62aa362a26acb267ad584"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/zh-CN/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/zh-CN/thunderbird-143.0.1.tar.xz"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "143870b51fc9bdcb195fead816cafe60cd432afdd008fa99a0dea7daf3f6643b"; + sha256 = "bca449a46ebc66bc639e18e647841d0b20c63fd84099e685631a4cc6f179cc89"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-x86_64/zh-TW/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-x86_64/zh-TW/thunderbird-143.0.1.tar.xz"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "1e3b4254d205ed90b385e323b2bfee3d49f8dd1a6dd662938f918299a77fb768"; + sha256 = "61ef0f6dac757de0856692682fd76974b92ddb8273fa27e5403471c022809b53"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/af/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/af/thunderbird-143.0.1.tar.xz"; locale = "af"; arch = "linux-i686"; - sha256 = "0d24ab8583a2b11cb327c7ad1cfac90cf6e3aa6d315be0290baedf01c81d4f14"; + sha256 = "9b8bbf1fe1cd9a5e74179936b9cc104e188022081aba417276cf9d22dabab478"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/ar/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/ar/thunderbird-143.0.1.tar.xz"; locale = "ar"; arch = "linux-i686"; - sha256 = "ea55c921592215c93be7ca9fce7a0758501521abca97fd726c5008f6dfd9c7c4"; + sha256 = "d4b28b4e70c89391b012cd2c4ea121823594cabc7cc41925dd0244858cbec4c4"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/ast/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/ast/thunderbird-143.0.1.tar.xz"; locale = "ast"; arch = "linux-i686"; - sha256 = "62f957944e690909cb8ed824c44345a09a8ad9fc3f0744cced309445a267dd57"; + sha256 = "1aaa5852346a609ebce56b657c73697871274843b3c7bace73ed7eb886af91a9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/be/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/be/thunderbird-143.0.1.tar.xz"; locale = "be"; arch = "linux-i686"; - sha256 = "39888f7e35c834103c31c709a20fc2983e3b1310050df82968923fc63a166fd0"; + sha256 = "0bab4347e06f084c0e8ddef5353ef163618de318b029165f94dd0749155b4f0e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/bg/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/bg/thunderbird-143.0.1.tar.xz"; locale = "bg"; arch = "linux-i686"; - sha256 = "27ff808294709fb148cad34a87078bbf5848f7dafe203a479ad4b690e1e1f40f"; + sha256 = "813f43f5658a31efc4452ea73e614570b5b05f4cbd6269da2648399551096706"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/br/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/br/thunderbird-143.0.1.tar.xz"; locale = "br"; arch = "linux-i686"; - sha256 = "d15549af9d3d00cce39a54b8e5dd28286d47e4b46a80040ec7b2458892c18c79"; + sha256 = "0e02c027dc52cb58df898864afa583bd0450c59a98cb289c25457d604d7e0f94"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/ca/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/ca/thunderbird-143.0.1.tar.xz"; locale = "ca"; arch = "linux-i686"; - sha256 = "3011f9abbdd2d60562d807b1bf86b05c00df4994402ecf0ce4a3cd018aab2e8d"; + sha256 = "e12bc8601040219cb470213c1afb21ebaac120d477f125b5f28a2bd06e510070"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/cak/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/cak/thunderbird-143.0.1.tar.xz"; locale = "cak"; arch = "linux-i686"; - sha256 = "2778c6e7016f7393fb449253289f8c1bf8c2dee982e6b4e5be6fd639b75f5aed"; + sha256 = "7ad3621a258be10e99f296087dea871bcf1f0a88fef4e157ee6e81e515d8d581"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/cs/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/cs/thunderbird-143.0.1.tar.xz"; locale = "cs"; arch = "linux-i686"; - sha256 = "a601a370bb9ed835d45f29d13e6dd35bffc20b979d1a3a7c71114c9df3ba60be"; + sha256 = "3006ccbdde72b07b5ed7512be35508533a85899d6b765f093234af79fbcd3b6c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/cy/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/cy/thunderbird-143.0.1.tar.xz"; locale = "cy"; arch = "linux-i686"; - sha256 = "adec1c8d614e8c5e1474edf3e6f89b8dc0afbe6e3c2bdaa0206fdb3981866aa4"; + sha256 = "ad902fc939ffeb9f1eea3e5f465c77e60e362f091bfd13fe4e32edce61a8a88b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/da/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/da/thunderbird-143.0.1.tar.xz"; locale = "da"; arch = "linux-i686"; - sha256 = "ec1dd5a12929aa30e40de226bc3477f28d3f4a90651a27daf0f0bafec0893649"; + sha256 = "48dd5ac7b0c2fa2df964cd211d53cf4e9a74d7f8b90d070dcfa582d373193eee"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/de/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/de/thunderbird-143.0.1.tar.xz"; locale = "de"; arch = "linux-i686"; - sha256 = "4aad23c4054387739fba91b3f77a5190320e1db8d17eaf064743a6ca3567761f"; + sha256 = "9d4f98b8961e1c8a80470dac33c1de7f6b3b29d2472b1d1ca4a35c40a3268f83"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/dsb/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/dsb/thunderbird-143.0.1.tar.xz"; locale = "dsb"; arch = "linux-i686"; - sha256 = "9d6620fa8d8978c5798fc7afd375807bde89e2f0a4dadd9e659bb5bb09906edb"; + sha256 = "e9c5b21fbeeeab7c1bec98c2e46f7330cf456c2c5e3729c6a59ac9d505cc31be"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/el/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/el/thunderbird-143.0.1.tar.xz"; locale = "el"; arch = "linux-i686"; - sha256 = "ce756d540e2032cba21da5aac515aee2ea56e6dcb1525bd7cf36fad8a768e50d"; + sha256 = "af3eb07bc01cc651a21976cf3098035fb02561f1f0d60e3b48c7b485d834361f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/en-CA/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/en-CA/thunderbird-143.0.1.tar.xz"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "4071b4b6dae3de33d7e9984368c37766eb0a77adda4996965335d957757ad8da"; + sha256 = "2d34be5101ce9619278bad18c299b79fe0831a7201d003a9291ca4559a77e560"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/en-GB/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/en-GB/thunderbird-143.0.1.tar.xz"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "9ed8a4c89ba778f8e5fcdd536f9aa27ad12d5af01ce2d32b5a36437b5a5910c0"; + sha256 = "0ff1d7af1807d2cacc32ae5b99a3024bccfbb63e497c9bdab37878f064d5c19b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/en-US/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/en-US/thunderbird-143.0.1.tar.xz"; locale = "en-US"; arch = "linux-i686"; - sha256 = "5e808c1c3cbb85844692b92b705d9bd889fc4ce2b2682cd5e584189123c74e08"; + sha256 = "2d80e9fdecc326dccf58c38795e1dea217353aef39a1708f3172b1c33cc4651a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/es-AR/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/es-AR/thunderbird-143.0.1.tar.xz"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "e7b399570f36ea1f60654ac3246496f586ce155dee7ca7deae800a37348afb75"; + sha256 = "4cec7c8e2141311f0d4518c98c973e2a77ef52a624b4e378825deb09d563f4e4"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/es-ES/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/es-ES/thunderbird-143.0.1.tar.xz"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "db828b0c6818ec9ed1118900b4b359e6d72f3b00140795daead173c57acd4c7d"; + sha256 = "40595dde2daa222162dc645a225f80c73b9658c8b96ae0f96bbe040d52b240cc"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/es-MX/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/es-MX/thunderbird-143.0.1.tar.xz"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "f24ed370bfbc7e27aa207d81e6ed7072b5f96ab73096b2cf1f95be0b6866dfe4"; + sha256 = "420a131dfeb0ff9ce3f53d38bb1ae57b7f980543a9393ef72904b9d40dc4cd6e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/et/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/et/thunderbird-143.0.1.tar.xz"; locale = "et"; arch = "linux-i686"; - sha256 = "5e38d0dff6079b0c1028fa390afcae2bc74b93182f97690761d05e959b56ad3d"; + sha256 = "fb26dd8f2fcae7378521b4f43223b4913fd0fe4cf98d8f4e7f508c34dd8936cc"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/eu/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/eu/thunderbird-143.0.1.tar.xz"; locale = "eu"; arch = "linux-i686"; - sha256 = "8dbd79518b993e4311f454cb2a13813e2b7266409eb59b959e3628a06e21bb45"; + sha256 = "4b4edcb571eb7d12aee8b664a074011ab591b03a3c8d0c834b1f8a8492254018"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/fi/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/fi/thunderbird-143.0.1.tar.xz"; locale = "fi"; arch = "linux-i686"; - sha256 = "44bb9c4fcbbf3f1f7fab9b78ecdf8703a87780439d9aed13e8bb237e8d7e2f74"; + sha256 = "0c984a2cc7a569535f53f100212aa55948749906f4a2e5dcf0cb2735d9214bb9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/fr/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/fr/thunderbird-143.0.1.tar.xz"; locale = "fr"; arch = "linux-i686"; - sha256 = "a160ab8d81a8e7ed57c1c23be3b061fa2cf0a4e8c5aeee889d1bb007bb5ae0fa"; + sha256 = "bbd3d46d284b7bcf4be97208d8ec677e6b6019bd897ae6a016eb1ba78dab30c9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/fy-NL/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/fy-NL/thunderbird-143.0.1.tar.xz"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "6f7304d86cba11e0f26b2e887f820aaf7efade5cb3515bda4c18422f8588cbb6"; + sha256 = "f77743de45577001eb209830c081df380b378e794e120216184c874feebd0aa4"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/ga-IE/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/ga-IE/thunderbird-143.0.1.tar.xz"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "5b963e4a9d4091e331e881f3245c7cacdae0964bd1956a8f9832783dad047fec"; + sha256 = "96d070e4ee314bcd59dbdc741142038ace4a53874757a1e8618b8165ec94d478"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/gd/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/gd/thunderbird-143.0.1.tar.xz"; locale = "gd"; arch = "linux-i686"; - sha256 = "34b155b9062b845fdcf63b392d664cddad5c22f49b53c7c073187f52c523159a"; + sha256 = "3c5aa2089ccf361cde6a87736f95ae969fa9cd9b292bc4283490bea8fc0c5362"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/gl/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/gl/thunderbird-143.0.1.tar.xz"; locale = "gl"; arch = "linux-i686"; - sha256 = "d67b2c4f4e0b92f5303d3b4d7d50c4ac255c2890eac31b572d800482a2ca6f44"; + sha256 = "89fb13a7d35f999e2a028254328545e2810d3ebfce979acf2d5c398ce5ffcf77"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/he/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/he/thunderbird-143.0.1.tar.xz"; locale = "he"; arch = "linux-i686"; - sha256 = "e5d79d498e15e6b879bc44af9d789a655d65f82ce0711956a5ad6b146ae0e7ce"; + sha256 = "28115757e2528a992b1933f66733feb96a1921e13f4d1ad7c44431440a02d536"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/hr/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/hr/thunderbird-143.0.1.tar.xz"; locale = "hr"; arch = "linux-i686"; - sha256 = "30e51b571dd1b7d28028da110816aeee1b33d32893ef5124910c4a155473437a"; + sha256 = "75e8b56666954c974b50b3b382c3c5d9d29c3b10fb44cbb0bd7b14c49e674b05"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/hsb/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/hsb/thunderbird-143.0.1.tar.xz"; locale = "hsb"; arch = "linux-i686"; - sha256 = "c1d704dd90524ee8d55b396b46b5dc0b6d7f8039e2e6d3d6cf0569ad170f11eb"; + sha256 = "b0adfb145180e61c470767c4abb6ebce71da298dc48212da66202850adfbbda9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/hu/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/hu/thunderbird-143.0.1.tar.xz"; locale = "hu"; arch = "linux-i686"; - sha256 = "be75552bfbbf3120d9dd79b3462397b6d9cc8b498c6663899f658af6752a1098"; + sha256 = "3a4d147f813a0661780774ff8c5662179555a5e66fd7b7ae069c0e7f4492837a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/hy-AM/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/hy-AM/thunderbird-143.0.1.tar.xz"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "62d4bbf37810c02a39fdb67e3c5357bc0fee23deae54ebb8b8002786b27c6691"; + sha256 = "8fbe1a12c71b9aec7360ab89f4a7cbd3e360b4be5b1fb3b3caf9adb76a2c1e2c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/id/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/id/thunderbird-143.0.1.tar.xz"; locale = "id"; arch = "linux-i686"; - sha256 = "b2db1758c42cb47a00c3c751481a920ce42ac5e9d9909c58938692e769a93618"; + sha256 = "6637fd5b5a79c8be7468864747a044a120521419b25897e1ad7fd7be74643ed2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/is/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/is/thunderbird-143.0.1.tar.xz"; locale = "is"; arch = "linux-i686"; - sha256 = "39d4ab93a56d6839d1fccd2e3f9c9f37b3e01d80646d1707c9e95726db79721d"; + sha256 = "71133daa5d2c5e12ace60c8bc09e758d08566c5396a119fc161ea71ff02cde6a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/it/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/it/thunderbird-143.0.1.tar.xz"; locale = "it"; arch = "linux-i686"; - sha256 = "ada402b271178c97b1ffb8c22c01a3e45785af6f9bd07c50ed77d0dfeead3fc8"; + sha256 = "53d66db585cf2777da525ae056e5a5f0878c99c33c67b5c054c8257ed31eba1e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/ja/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/ja/thunderbird-143.0.1.tar.xz"; locale = "ja"; arch = "linux-i686"; - sha256 = "fe6c82e1cf9391b387168f5003347c1020ca7198f0957770fb764c7e986dcb5b"; + sha256 = "f9f7856370f829d9466af378024f96baa8aa689da11dd7661b9446caceccd2d5"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/ka/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/ka/thunderbird-143.0.1.tar.xz"; locale = "ka"; arch = "linux-i686"; - sha256 = "3574c3ae8dda5efc0e8cc3a235b38434bcad3bf937575a94a40b387bc116b5d2"; + sha256 = "3c050bdfe35a915a44a1b8bc78169636a6cfda0a3c55f1a39aa2c160fd48d06f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/kab/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/kab/thunderbird-143.0.1.tar.xz"; locale = "kab"; arch = "linux-i686"; - sha256 = "f6be88c586e70e4addea537df1c7ba2410601bd8cd52105cf2d8bd658abe391a"; + sha256 = "c68741f6756d9faced52a5f26f6983396a248c46206731fd2dfd38cc57e61810"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/kk/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/kk/thunderbird-143.0.1.tar.xz"; locale = "kk"; arch = "linux-i686"; - sha256 = "3887c5c5a0e22b425fe1dad8eb7f96d010b448b1c77b55a453d718fb683d51e5"; + sha256 = "aaedd7777593303a4c1b2031ddbbb4f1e881e8b2437c6ca28c54442be46c86d5"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/ko/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/ko/thunderbird-143.0.1.tar.xz"; locale = "ko"; arch = "linux-i686"; - sha256 = "c1e2e0819542256449f562d9900d1a21e395e2f5bf86604e64ad5f0882c8aecf"; + sha256 = "b7afbaaf18769748af4f75735702db08ccb7fc246cd746f3b3775091bee52783"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/lt/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/lt/thunderbird-143.0.1.tar.xz"; locale = "lt"; arch = "linux-i686"; - sha256 = "352d84abad08f4f66a35b523171d6917fd24656d97628d65373377927a2349c6"; + sha256 = "dc6068ff4638ff7ff300ff839c719bdeff84b9b52917fd7ab61ae8ad968e9f2f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/lv/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/lv/thunderbird-143.0.1.tar.xz"; locale = "lv"; arch = "linux-i686"; - sha256 = "8f361b68844a310a70993ed2670f19d783e7d459c1a846e16a83c684518d4cd1"; + sha256 = "ce3ccac4a9c293792fc54b0b6f354d1af304b286bd2e2aeb2ecc7f17da7e9257"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/ms/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/ms/thunderbird-143.0.1.tar.xz"; locale = "ms"; arch = "linux-i686"; - sha256 = "1957ac91d6ce94b350c92537941acd908b1d905ee26d94767f1a5ff4b89f9cf3"; + sha256 = "68f54064519a7d3b6680b653c16c55df4420bb6620dc7a8436c703b6128b5d83"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/nb-NO/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/nb-NO/thunderbird-143.0.1.tar.xz"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "9b2396bb11bf1819827ab1da7ec439f71a3afef7d5c67d4952c5bfbc7d8da382"; + sha256 = "741af1d2648eb328759f39cc83bfd6ff262999f3fbbbd1d0ba82e775cd85ee36"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/nl/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/nl/thunderbird-143.0.1.tar.xz"; locale = "nl"; arch = "linux-i686"; - sha256 = "936add850744faa5efa096b8a57c1fda658b7e73728627d44e37e457dcf4168e"; + sha256 = "7719c5d1a643ae101b81b9cea1096095ff2b7b7c6f6c967474cd5879f9b51bf5"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/nn-NO/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/nn-NO/thunderbird-143.0.1.tar.xz"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "53c0db97a20173b9b8ea768a437be7aa68401097029d5f144dd0479f0323c9b2"; + sha256 = "172e274e323deeb406664df1fb6b4f4e583b2165db5326cd5cc384f574b6d854"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/pa-IN/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/pa-IN/thunderbird-143.0.1.tar.xz"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "2103eac7197e7b8470b7933e20fbfe9a13d1b5759c6d1c262fdc30ac385b16e0"; + sha256 = "a3e5b8f76009fdfd70a25795403578d2eefc38532792e9a23bee47641eb17fa1"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/pl/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/pl/thunderbird-143.0.1.tar.xz"; locale = "pl"; arch = "linux-i686"; - sha256 = "162a6de55e8aae66c05080becf80116125edcd36541fbdefed84b1a99980368d"; + sha256 = "605948d2fa7dfcb79fd5f4d064cb67690dc88a0517edcb77ca833bab37f85e53"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/pt-BR/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/pt-BR/thunderbird-143.0.1.tar.xz"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "d5c34182b82f60fa7fcd1e6b7f648dfc9c0e294df5b11dad0e3d3cb5bfe8910d"; + sha256 = "a389c95e3a0897ba9a4e3634d357f782c1d40662db503f70902be797975c22ce"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/pt-PT/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/pt-PT/thunderbird-143.0.1.tar.xz"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "5d351d2c7b87553c0ccc6c2f44508b1d95e5d478dc9be753903b64557e3b18eb"; + sha256 = "0502f15bd0555e7832ce9c30749f9a6ec54fa68f232376ca7399a6cf2fdf7ed6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/rm/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/rm/thunderbird-143.0.1.tar.xz"; locale = "rm"; arch = "linux-i686"; - sha256 = "924554123844f24ac7856338e40f997872bbe75a4f0d740c0dbfaaa22b56b2b6"; + sha256 = "9061976aa0630d1ff369adf8ff042b66758ab5d56d7c4ef72f8a7efbb6139676"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/ro/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/ro/thunderbird-143.0.1.tar.xz"; locale = "ro"; arch = "linux-i686"; - sha256 = "309d4ef4abe4e0c4f38f771c0ec27c1166d9ae6da7aa26c1b76e4406c13f77ce"; + sha256 = "1c6ae3aa75981b95140ff2b261eab0f5a7053e99c95d8d700714e580da351aa6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/ru/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/ru/thunderbird-143.0.1.tar.xz"; locale = "ru"; arch = "linux-i686"; - sha256 = "4edbca0a5cdaa26af7017ec9f8117f23f693bb76f08e6ebbceeaf4496e2df18c"; + sha256 = "c1b0e22974cdd660c0b67e9ca56fccf9521fdd4893d05a201a75ff90bc54a964"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/sk/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/sk/thunderbird-143.0.1.tar.xz"; locale = "sk"; arch = "linux-i686"; - sha256 = "b2fe9d0c0a0fb5b149ec1ec85235479c8786f3cbb5d9c60904f492d874e2deb5"; + sha256 = "430b9aa4578a882255439453c291f82ded930573f0bb821e6406b5e5c6bc3606"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/sl/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/sl/thunderbird-143.0.1.tar.xz"; locale = "sl"; arch = "linux-i686"; - sha256 = "2cf2aa5478a5c15a6195851cd826c7dae985981b2162e91d94ab59b042cab726"; + sha256 = "408bd7b657a4d69a4c3a20fe7b8732aa0f2f25025d41360d82422eccafa1beee"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/sq/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/sq/thunderbird-143.0.1.tar.xz"; locale = "sq"; arch = "linux-i686"; - sha256 = "a7d667de4a7ecc33f40ee8e93163d92a0a7288ec7251b961a5e137a19019c54c"; + sha256 = "8dd0cfe5fde270a8330c340fe09fc46547e0006231bd49eb3486a213d5c9a3c9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/sr/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/sr/thunderbird-143.0.1.tar.xz"; locale = "sr"; arch = "linux-i686"; - sha256 = "67a79439af3652500ccb3f8e406cef81951f830a73fd016a8933bb20045bc45f"; + sha256 = "67c410b84102e1769bec8f121d98fe1a74fa4be300bfde374570b31890a1e009"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/sv-SE/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/sv-SE/thunderbird-143.0.1.tar.xz"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "7c3d35c9010f61f562b8069e4267c69a3f37f6f3ece795c3363efaa41aee7a65"; + sha256 = "aa3845994a1d0346537f020430c8e1d4870d2a704e78864fdfcddce275158adf"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/th/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/th/thunderbird-143.0.1.tar.xz"; locale = "th"; arch = "linux-i686"; - sha256 = "e5e66a540996324489899c69559173c994aa94673c047a6add3ed09273ec85d3"; + sha256 = "8731394e3a707dec97d914b6b7adc2ac583b0bc3ab6a8fcca07f9330e7600e3d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/tr/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/tr/thunderbird-143.0.1.tar.xz"; locale = "tr"; arch = "linux-i686"; - sha256 = "8fe957f84dc5e02d6eb777b9aebce89bf511b6f28e72849f9282e2d12209bb52"; + sha256 = "e3e10e51a9a1e10b195652ab22968200577cdad5ab7c1a3737dc951753b2b512"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/uk/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/uk/thunderbird-143.0.1.tar.xz"; locale = "uk"; arch = "linux-i686"; - sha256 = "7b0f01a592b7947f7441e5d0e81ad053682c2104738ebf538a8763c8c3fe8156"; + sha256 = "c2dd44dabbe655f4d5904d002b9a3c538da03e4ac0f2eab736e69ef1bbbb1f26"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/uz/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/uz/thunderbird-143.0.1.tar.xz"; locale = "uz"; arch = "linux-i686"; - sha256 = "8f0d4f4800901473e3b666e292f3d296b84aac089731e8fdbb2d9b1d20b5202c"; + sha256 = "65a62223cee859e1cdaaf4ea75c391f5c38779d01a2de18a95b82e18e4824bec"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/vi/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/vi/thunderbird-143.0.1.tar.xz"; locale = "vi"; arch = "linux-i686"; - sha256 = "7e0726bc6630d04f2f2d8e3563a8cf7b6c7c5198cd3226d02d0b95ea081bfac7"; + sha256 = "b6ca9fcc1157acd6761a2db4f738a93270518912ee3305d31ab14976b1a9a510"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/zh-CN/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/zh-CN/thunderbird-143.0.1.tar.xz"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "051e047f312046ff26afd78c7361af7ae2ec7ed55efaf33a8f151436df2c8858"; + sha256 = "5a4e36bbc01aa5fe1904f2b4b1db943349c33c60dee9b92919784e8743a27b27"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/linux-i686/zh-TW/thunderbird-143.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/linux-i686/zh-TW/thunderbird-143.0.1.tar.xz"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "16b1b9215afe53bcda63011e87345923a8234c501551337e56a5c39ec323a6e4"; + sha256 = "846773c5b8a8d563410f6decb605719d8c2575873b15e9aba5d79e036c640924"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/af/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/af/Thunderbird%20143.0.1.dmg"; locale = "af"; arch = "mac"; - sha256 = "64d224fc5e70ca1876c10468fe83a28d3c8425824ba55acb723af3201c6ec557"; + sha256 = "dd352459679060cdcf69763a347101b1248d571e8e6cf38f87a82fd1da93cc1b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/ar/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/ar/Thunderbird%20143.0.1.dmg"; locale = "ar"; arch = "mac"; - sha256 = "bb774f0a38b58da2ddda6e22f8b233d853e6a3de90b87ed2e5cdca034addc739"; + sha256 = "27d32439dfc680f2c7f0cc01d5ef92c7c8596bf8def48bac08493c4042797151"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/ast/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/ast/Thunderbird%20143.0.1.dmg"; locale = "ast"; arch = "mac"; - sha256 = "8dcc7cb33b19e06cf966f769bb337826625fcbf0d3f5483db34084ccde731c43"; + sha256 = "ccd0a7a5284c5f0ad26b94dadd144d454a051136661386adfb9d7f4d3ef77490"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/be/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/be/Thunderbird%20143.0.1.dmg"; locale = "be"; arch = "mac"; - sha256 = "ad345b9e8c7c94be227ea3eeef44e39efa84395fc375da3cf712d9e255293a8b"; + sha256 = "9e3374e329522627cd34f1e97b98922dbf7392fbdda22d2aadc40bd05ee5e90d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/bg/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/bg/Thunderbird%20143.0.1.dmg"; locale = "bg"; arch = "mac"; - sha256 = "4cb1112e19ddafaa9e67ab0d0368b6329ba0f78e203c8023591f54df5e80d133"; + sha256 = "03b38133d68b822d4185278235cdf1913bb376017a85bc6f1a05baf4fe2a921c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/br/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/br/Thunderbird%20143.0.1.dmg"; locale = "br"; arch = "mac"; - sha256 = "6de9514bda26b66d87b58c8f484ce40f57491df39cce99ab71115a444d8aa396"; + sha256 = "108c6f2a9f0861dc4837fc0925cf47d64f515dc60fd3d1df578b843d43796293"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/ca/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/ca/Thunderbird%20143.0.1.dmg"; locale = "ca"; arch = "mac"; - sha256 = "00adc985bd16cee89b1c66892eac8125ce2ad416ecf140c50d47fc0bdc8852c6"; + sha256 = "4f10e508a4d69006411028bcfaac1aabd2fcc5ecb045eddf858be1b17163c870"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/cak/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/cak/Thunderbird%20143.0.1.dmg"; locale = "cak"; arch = "mac"; - sha256 = "20c73bd030182874107478f9a40d05b6288186c784143394d7a216fd58d5d25f"; + sha256 = "6c8a7366e15a770cd06af0b239b34febeaf8dd9774a1071f8e1208fa0c57e2ef"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/cs/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/cs/Thunderbird%20143.0.1.dmg"; locale = "cs"; arch = "mac"; - sha256 = "daa3572315db2f2fac09f389f4a09ed2a1ef4b660bd206d56c4b0f1fca7218a1"; + sha256 = "8b633e05261b289c674c16da81c3ed03cae243c3ba8b5dbec729513dc6fe2403"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/cy/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/cy/Thunderbird%20143.0.1.dmg"; locale = "cy"; arch = "mac"; - sha256 = "f4957fb199feaa4e4cfd05dac1169a7d285ca40d5a588c20283f24acf3e94ae7"; + sha256 = "94ee26ce741a368f4ec1af50856a3f8fe4fae3645855eee7b39b2e0385202d62"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/da/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/da/Thunderbird%20143.0.1.dmg"; locale = "da"; arch = "mac"; - sha256 = "bc34be0cdab2c4cf5cdfaee352d151f1d71611368d6a9fc2462707623101e08c"; + sha256 = "34c6bbedd5fca5d50c353b0453e6853457f931886e5f737aeb738f742b9ba3e9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/de/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/de/Thunderbird%20143.0.1.dmg"; locale = "de"; arch = "mac"; - sha256 = "13054e46fd833d21db6fb0b7207222d3fb81d19852fe330db50560bef367155c"; + sha256 = "edc540792ee4ff8971cfcc5eccc0fcea2d7f795cab28b2b7f2ba4a0c3a33edf8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/dsb/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/dsb/Thunderbird%20143.0.1.dmg"; locale = "dsb"; arch = "mac"; - sha256 = "994292acbe58037a99b6d7214aeea640d0bc08efbdcfab1b1c0c6caeeb724920"; + sha256 = "6e841fe7c78e16a735555f2dcfcb11b9f49595f97cf78da1deb53e27a00ecbe9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/el/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/el/Thunderbird%20143.0.1.dmg"; locale = "el"; arch = "mac"; - sha256 = "6b02e5cf7af7225f8a49d9288d787a3b048d2aa025d795a2cd4cb67642182d5c"; + sha256 = "8d81356e3f73a9c8d06916122ebb52994a1538b9d1d18582e68d73da6c05c993"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/en-CA/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/en-CA/Thunderbird%20143.0.1.dmg"; locale = "en-CA"; arch = "mac"; - sha256 = "8138b4acafe65ba1d338b4331ef8e366eb9c9ca873f7ed8b28828d66d9ffff10"; + sha256 = "aae9441427b133624f6f8ba6f8ca749f09a93f469822ce6527342d5729455652"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/en-GB/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/en-GB/Thunderbird%20143.0.1.dmg"; locale = "en-GB"; arch = "mac"; - sha256 = "b44d07fb2609d918853e02ec0953ac3e3ee09ea4b22b360767f3a69516948979"; + sha256 = "c64f7afa7129142c5c7b41ce77b954318640d4168766976c5cefd2a8e833a1bf"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/en-US/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/en-US/Thunderbird%20143.0.1.dmg"; locale = "en-US"; arch = "mac"; - sha256 = "33120e253d73e74e56e93debca23e88e55c7a0929b1a88981d1cde9a34c56354"; + sha256 = "de252ac86143c2855a9ef5fde1abbeef59d67db552eedd3c948ccc2a2de46eb0"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/es-AR/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/es-AR/Thunderbird%20143.0.1.dmg"; locale = "es-AR"; arch = "mac"; - sha256 = "403b84fb122ae1ea22c062383666c72a4f94da23071f50c14e878a149cbf939f"; + sha256 = "d1cb550cbf5243454923c467d4413e8c94baf770849b3b4217a68a12bb9cb478"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/es-ES/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/es-ES/Thunderbird%20143.0.1.dmg"; locale = "es-ES"; arch = "mac"; - sha256 = "a0eb360aae2784935ebeb8e5a1d46da5a3c4e6e77a370b9b55dd862634be6c45"; + sha256 = "6b529eec2bee456ae3734a0786a498ce1115cc04dbdd0d08280adb283c596f2d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/es-MX/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/es-MX/Thunderbird%20143.0.1.dmg"; locale = "es-MX"; arch = "mac"; - sha256 = "1c30307dd5aaf6d65082b341c88e784f3917cd4003f079032fd722d244745594"; + sha256 = "0d1bc387a4c79642598a1e6db40daf3466fa1c4cea1eb17caf6da626695cee1f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/et/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/et/Thunderbird%20143.0.1.dmg"; locale = "et"; arch = "mac"; - sha256 = "74944d646872d626f2647a897acb8a0fba5e543cc590f5215e54f60ef922695b"; + sha256 = "1fa5cbd5dad1903415558069691d9885356d7c5f15c64f62ac5b63ca537f7894"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/eu/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/eu/Thunderbird%20143.0.1.dmg"; locale = "eu"; arch = "mac"; - sha256 = "d729c6cca12b4ad0cf2274a3e2ec7417ffe17f43eaaceb88710e919d3868570c"; + sha256 = "d2fbe2080f2e4135fcd8e72297c1a9d2488a947e77388867a60f09e8240bb7ff"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/fi/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/fi/Thunderbird%20143.0.1.dmg"; locale = "fi"; arch = "mac"; - sha256 = "e2c4529e826cbab23988a5daf786a4f1ebc41b5d377519032a0d7fd7a74b639c"; + sha256 = "09b114231a9b13eddbdf6729b303309f85b5c9fbeeaa658b9ec20f58d9725143"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/fr/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/fr/Thunderbird%20143.0.1.dmg"; locale = "fr"; arch = "mac"; - sha256 = "6efaf114299afad7bd3355cc111ebfdee09533ceeaeb532d5a3649fb5181f0a0"; + sha256 = "1189984f0cbd79389f9c3ba54e653c1c89964b67071417cc0fc7c12f8fa35c31"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/fy-NL/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/fy-NL/Thunderbird%20143.0.1.dmg"; locale = "fy-NL"; arch = "mac"; - sha256 = "a5ac5de1742f14a211ab3c0096a50ef40523fb1b8cb26644125783f31373219a"; + sha256 = "05f9a3a0bee5980c824493bb0d3c8cddef2aa318446f4bbf0c454f34d3895547"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/ga-IE/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/ga-IE/Thunderbird%20143.0.1.dmg"; locale = "ga-IE"; arch = "mac"; - sha256 = "1eeb2ca63bcd27b9621e691686a703848e7e41c1b384184916e136512f130d86"; + sha256 = "dd6ddf3d80b9e5125f19597559f6971a6e236b9ee8029bfc659d4c24059c68c5"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/gd/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/gd/Thunderbird%20143.0.1.dmg"; locale = "gd"; arch = "mac"; - sha256 = "e2f9a993a19a6a1f471fe92cdf679acd5bcbb9ee2dce1a565028e52cb73f563d"; + sha256 = "31d1d38bb3f40730d0945ae68c68f4e0987d4731d2139207f196333f8fb74017"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/gl/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/gl/Thunderbird%20143.0.1.dmg"; locale = "gl"; arch = "mac"; - sha256 = "bac849faac49056ebe0892f31617bd478d0b2d2046177e8662e931d017182710"; + sha256 = "11c400e4df3e94482f33ba0a1d4de7ebd47c8e2d076f9cbd10a209e9ac078d7e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/he/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/he/Thunderbird%20143.0.1.dmg"; locale = "he"; arch = "mac"; - sha256 = "292b008d4eed2be91856fc966bd2c3bf6acae7aa6cbaa1fc7dc2d9c0846b3342"; + sha256 = "00642933bf93afb060847a5b81b1749620be8f95c56df06ff909a47a04167b1c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/hr/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/hr/Thunderbird%20143.0.1.dmg"; locale = "hr"; arch = "mac"; - sha256 = "da05b00c65f9b0f36ab2ef7aa8c287aea7b196a46781f3e3777224c985fe08a8"; + sha256 = "59761be2654ebd2adba96dc85a452b1785df1101051107bed78170d9b777f406"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/hsb/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/hsb/Thunderbird%20143.0.1.dmg"; locale = "hsb"; arch = "mac"; - sha256 = "b8173028467afb0bf01cf8ee6bd49f9e5dc49c5d2e4522cf72150ea3129d0fd0"; + sha256 = "2f2388a5ca54c590e138a02615f69d90df95ebd36aad58a177640aa642b71e0b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/hu/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/hu/Thunderbird%20143.0.1.dmg"; locale = "hu"; arch = "mac"; - sha256 = "f341001ef594356c7e4091382048932cccec018eb6c36a4ffeb90f3fcf13ac98"; + sha256 = "ed9db5b0833c0cbef411e84364e3b043ba25d3139f380ed7a9bf5db8f542b38d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/hy-AM/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/hy-AM/Thunderbird%20143.0.1.dmg"; locale = "hy-AM"; arch = "mac"; - sha256 = "c327456649b9c237c7f16084c43cded601e91db90b1999b3a68cce71187eb034"; + sha256 = "8785c79a23d5eb6fc2dc8a558b3eaad41accfcc4fca39983a1eb1ff6dc30b333"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/id/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/id/Thunderbird%20143.0.1.dmg"; locale = "id"; arch = "mac"; - sha256 = "53afc8b0bb0e14b6a5f5d7ea3c443ad90a3eb82c66e3c0568c6ebd6f82451983"; + sha256 = "7f6a2b65ac4344304cfbf4661240619926372fd00109b50012935aeab51031d9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/is/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/is/Thunderbird%20143.0.1.dmg"; locale = "is"; arch = "mac"; - sha256 = "209789cd0e665c0f784b6f4216bc8c97ed7384413db85af8cb908476ebcdf624"; + sha256 = "5485a839d1ef2fc71cc33760d21b6fe61ec184f519a870cfed03a8d914fc3755"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/it/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/it/Thunderbird%20143.0.1.dmg"; locale = "it"; arch = "mac"; - sha256 = "e534eddfaa6bd547ac8bcdb0079b607ba035642c26ebb37d6d4547ef7fb739cd"; + sha256 = "dfb7e7a21e55d44e7f99cfd378a83c9f2e4cd400be7619f0497bff6eca0e7c43"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/ja-JP-mac/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/ja-JP-mac/Thunderbird%20143.0.1.dmg"; locale = "ja-JP-mac"; arch = "mac"; - sha256 = "a24a690497aff1fb829e724849e0153c6cd78d967cf848d1a6b663792a79a32a"; + sha256 = "84efb6cb88fa6bc0ddc65fed2c165d89eb95e5152b557d4fb4c1596ed6394730"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/ka/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/ka/Thunderbird%20143.0.1.dmg"; locale = "ka"; arch = "mac"; - sha256 = "6451f6e964fc2dccd1e891d28967ac57569a7973eba2e85c2fe75f8c8395f1c7"; + sha256 = "882d933a5d9473bcc4a04700c1e7cc33358853ab9e917d3bd71faeed74d94237"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/kab/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/kab/Thunderbird%20143.0.1.dmg"; locale = "kab"; arch = "mac"; - sha256 = "35cec81f82233f9fa9c89fab352574a575d7bd31b27e0c87d0e1ed772a985f67"; + sha256 = "99f65709e9ea2cef0c84427b3f53768581f1736e77bf5482ea1b3010f3fb4ff3"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/kk/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/kk/Thunderbird%20143.0.1.dmg"; locale = "kk"; arch = "mac"; - sha256 = "fd8f4c5ba02dc3135396cda7a1272b67aa2079a9caf446d27aa50818f8d770d7"; + sha256 = "36f61e98bc544c530002dabfae6bcce81b9b6d199940f0093f03550451160a04"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/ko/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/ko/Thunderbird%20143.0.1.dmg"; locale = "ko"; arch = "mac"; - sha256 = "570c020e8ed23e7b86d7d877e03e4bd15417c7de4dcb43b4f92c360464c14d5a"; + sha256 = "769c0b207a898b0fe68348ecda8d1dbd9b4584b04bb7828cd55acb5227cb805a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/lt/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/lt/Thunderbird%20143.0.1.dmg"; locale = "lt"; arch = "mac"; - sha256 = "243a8c4fd597abc8e992e4f5550fe90315926b3d5032034909b375d6f6399ad1"; + sha256 = "8496605c6ac5a20af459fd18c52490538096b8603a74bb3dc096eb92aedff1ad"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/lv/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/lv/Thunderbird%20143.0.1.dmg"; locale = "lv"; arch = "mac"; - sha256 = "f52e4da5b92f22dbcc410e83fdef3c5cfc1cd13f6776f16fe01459b00a969a76"; + sha256 = "ae6ebf248e69c03b320aea62714497ee125a820f1f58f81579d1cf8427b57442"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/ms/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/ms/Thunderbird%20143.0.1.dmg"; locale = "ms"; arch = "mac"; - sha256 = "fb7ec0391bd4af4cf3275eeac4d963360a699a2baa55f739031eec4815e962e7"; + sha256 = "94eb7f0f9f9b7d608db8dd1f9295e3a8eceb6d7d71b4a3038baf50ff32cb9d40"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/nb-NO/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/nb-NO/Thunderbird%20143.0.1.dmg"; locale = "nb-NO"; arch = "mac"; - sha256 = "e156efe6e66bc812e69eb8e2bf6479392bb92557a2a4dc0da919e587f8022fbd"; + sha256 = "ff94e8cf70605d8da308da6a4739f2c7a33d1897bed1279d53dcf6168a03a36f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/nl/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/nl/Thunderbird%20143.0.1.dmg"; locale = "nl"; arch = "mac"; - sha256 = "7d8b0386423d6129154dc80889a0a9fa88f682600cc5e29a4154ff2144f48128"; + sha256 = "293f122147af3aec3858ebe6a9f4bd54da3e687a253124fb38b4b2531e642355"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/nn-NO/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/nn-NO/Thunderbird%20143.0.1.dmg"; locale = "nn-NO"; arch = "mac"; - sha256 = "bd7ad9fb4bbcd521d4ebe70b8774470ee7b781aefdd07afb3033a47ba4d9ace0"; + sha256 = "23239148c3f104b6933dcfe8ddd9de55413b44c09896e272912457ede36bfa49"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/pa-IN/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/pa-IN/Thunderbird%20143.0.1.dmg"; locale = "pa-IN"; arch = "mac"; - sha256 = "77dbb1fc19f9f4ccc40ff8778853756687057000d1db466f23e27a0086a88f9f"; + sha256 = "75aef01ae8be7447a2076c14c3eec72040ecba3a3706893dad4cf85d5ad81791"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/pl/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/pl/Thunderbird%20143.0.1.dmg"; locale = "pl"; arch = "mac"; - sha256 = "dd113de771cab134f80036e58685a2537c81944950ff977773e59dc874d46d4d"; + sha256 = "2b2a2dabcae9e25d0ea269a5fafa53e078d5afdf22efb488d57013126e3c200f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/pt-BR/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/pt-BR/Thunderbird%20143.0.1.dmg"; locale = "pt-BR"; arch = "mac"; - sha256 = "99c6d144c9d7aa7ac8fb936d1941248088eadab38f2a1e2428ee10299d7da4a2"; + sha256 = "0a97d23a862f2c69f139378ad062018acd843a2ed449ff822e7b21d4a3504c98"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/pt-PT/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/pt-PT/Thunderbird%20143.0.1.dmg"; locale = "pt-PT"; arch = "mac"; - sha256 = "debd916c37c90c67856104296be85ab82d36defe7e8006c539ee3e4e9cc6b24d"; + sha256 = "ce52947bdabe31a6b575f7bc0e5fe17362bc37d48c90657fdda3642a44160f27"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/rm/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/rm/Thunderbird%20143.0.1.dmg"; locale = "rm"; arch = "mac"; - sha256 = "6d0953d384edb2a07e8582df8110793f7f653ca4f9698611493a96b2fe61507f"; + sha256 = "12044114f5dbbdbc63c7c1f6fce6c01cdd34ee946830ce824b9f0251fce58676"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/ro/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/ro/Thunderbird%20143.0.1.dmg"; locale = "ro"; arch = "mac"; - sha256 = "1e58a40a87ea206e5631bc47527fac5b3a68fb8247c8c104526b5652f382fc91"; + sha256 = "078dd5e1bc99629c9890ea8dc37e4f50826a86000519c6331b9ec9e60e7d2cd0"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/ru/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/ru/Thunderbird%20143.0.1.dmg"; locale = "ru"; arch = "mac"; - sha256 = "4e2e51e49ad545c34a5cbcf4c1242e6e149faebebcdd9c1f884fb3369c375d8f"; + sha256 = "c42bb87ffe88ddd3c446ece5859cf6ed3e94123a8368455f90d92e6cba4696fe"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/sk/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/sk/Thunderbird%20143.0.1.dmg"; locale = "sk"; arch = "mac"; - sha256 = "57aabaa56e2cbff991f2c6b39e2f0885124cab28d6d61e05dffb2773369b7fe7"; + sha256 = "81d767229ffd58e2b81d013c5101206a259a06097fe1fe41fda3ab47fe8dde5a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/sl/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/sl/Thunderbird%20143.0.1.dmg"; locale = "sl"; arch = "mac"; - sha256 = "28288da3789a1d06720e2806211924c9cc46dc882098aea08238a45e512b71a0"; + sha256 = "6812d6cdca415479b2be292e29b5ecc9894ca520946a0d98e2783fca6b2022af"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/sq/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/sq/Thunderbird%20143.0.1.dmg"; locale = "sq"; arch = "mac"; - sha256 = "f47a75bedc87b3c4a90e39543d41f27b4a4adb4b7f0ee58619de4d7de88cf4af"; + sha256 = "1921d87e174cbee32986ddabbc1e932901a572377ca74080dc40732e12dcd111"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/sr/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/sr/Thunderbird%20143.0.1.dmg"; locale = "sr"; arch = "mac"; - sha256 = "ba7cd4b5cf3e86ecb6bff721a8283dde4d5ff093ec1512dde022fe4ae6cc6d9d"; + sha256 = "0841f1d43c0db0f381d7705de0d3f4e681c228b42a145a336f988aed8f146b1b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/sv-SE/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/sv-SE/Thunderbird%20143.0.1.dmg"; locale = "sv-SE"; arch = "mac"; - sha256 = "4dd1dc2ecc0f380be45de4dbcd60ff64fbd6cde0c30c67e3598913f8587d3d37"; + sha256 = "765e4038047a2ff3fd830c13270dc185ebbf0dcc2e0fb88dcb0eea42a03a4e0d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/th/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/th/Thunderbird%20143.0.1.dmg"; locale = "th"; arch = "mac"; - sha256 = "80665ae755e6b874f88383ddb90d8a5fae7359bcfbe18ebdecaee89bcc92eb7d"; + sha256 = "770889e66a4eaa0744106bbe2c2fe9d7cf31e3d770136a5dd236ec1ffa201a85"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/tr/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/tr/Thunderbird%20143.0.1.dmg"; locale = "tr"; arch = "mac"; - sha256 = "1968b64da2d0fe521a3627925676eba4fe680810d81200cb3e7a967319479981"; + sha256 = "6f77ba8a3d7e0f935bf3f5678ca53c945ee228c5f882eec55cbb1f34216a5fc4"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/uk/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/uk/Thunderbird%20143.0.1.dmg"; locale = "uk"; arch = "mac"; - sha256 = "c10420d5437e00c4dba13330d831f9b7c9c975643f101f17e8c975d29b20bb37"; + sha256 = "5b97866a71fe3bf2ccbfc45f63ac289f20c76538188c315079356dcf8f349e14"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/uz/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/uz/Thunderbird%20143.0.1.dmg"; locale = "uz"; arch = "mac"; - sha256 = "043cb208208cf25cd1675895c983f6a0837e99f8aca495853953253293fc12df"; + sha256 = "4ff45bc614a1dbe0f91ea4b2f621f878184527e97766c3c2b99c34a51e08fa55"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/vi/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/vi/Thunderbird%20143.0.1.dmg"; locale = "vi"; arch = "mac"; - sha256 = "bfe625dc45d499fcecc0bb1e6f663b340f46f3b18c805c19dbabddbeded90c69"; + sha256 = "95403ee19e658d66a4f72268fc8243f3a158bc61ba2d4f0907c10dad9b8767bb"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/zh-CN/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/zh-CN/Thunderbird%20143.0.1.dmg"; locale = "zh-CN"; arch = "mac"; - sha256 = "db80163fcf54723aed9b9229df6cd702660a8db3125004240b6f2c683a8b5087"; + sha256 = "3cf136a0733c0dcb7b5d662c904e81e7c9873165a0d291df0c3dbb1f5f09a524"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0/mac/zh-TW/Thunderbird%20143.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/143.0.1/mac/zh-TW/Thunderbird%20143.0.1.dmg"; locale = "zh-TW"; arch = "mac"; - sha256 = "940888e02ff5a34458983defffa40fb0fe8dd4fc6d68ae21a2894f2fc3803443"; + sha256 = "63e86e3a8b8a99be685d2500e5497af70ac6fd9b997df1f197a0dcb4c24cb151"; } ]; } From 37f29816e5c3f80605867d9ea66df62e99b4db14 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 2 Oct 2025 03:56:25 +0000 Subject: [PATCH 23/42] balena-cli: 22.4.6 -> 22.4.9 --- pkgs/by-name/ba/balena-cli/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ba/balena-cli/package.nix b/pkgs/by-name/ba/balena-cli/package.nix index c52b4e43c96b..0f57d4cabd45 100644 --- a/pkgs/by-name/ba/balena-cli/package.nix +++ b/pkgs/by-name/ba/balena-cli/package.nix @@ -22,16 +22,16 @@ let in buildNpmPackage' rec { pname = "balena-cli"; - version = "22.4.6"; + version = "22.4.9"; src = fetchFromGitHub { owner = "balena-io"; repo = "balena-cli"; rev = "v${version}"; - hash = "sha256-/EV4xixcJBNDWqvNp9uv4ZjlPcm6j/d7u4qYlALtixQ="; + hash = "sha256-Q3/2Uv7Lke7lBzcEPPgq5FWzWvBNdADvkXL4BBaHX9o="; }; - npmDepsHash = "sha256-ZunJp1wY8iFhEvGKPJDPcnKO/eGGVT2NduK1kjjZ2k0="; + npmDepsHash = "sha256-7LVgD8uQEK1FQuWUsD7zgQrh0HB51XEkbp/TU7m1K3w="; postPatch = '' ln -s npm-shrinkwrap.json package-lock.json From b790574dd424c50a5167209f9af37bbb026642df Mon Sep 17 00:00:00 2001 From: Matteo Pacini Date: Thu, 2 Oct 2025 18:20:13 +0100 Subject: [PATCH 24/42] protonmail-desktop: restored darwin support --- .../by-name/pr/protonmail-desktop/package.nix | 53 ++++++++++++++----- pkgs/by-name/pr/protonmail-desktop/update.sh | 16 ++++-- 2 files changed, 51 insertions(+), 18 deletions(-) diff --git a/pkgs/by-name/pr/protonmail-desktop/package.nix b/pkgs/by-name/pr/protonmail-desktop/package.nix index 4ff3d237ea38..fd5370cfec3b 100644 --- a/pkgs/by-name/pr/protonmail-desktop/package.nix +++ b/pkgs/by-name/pr/protonmail-desktop/package.nix @@ -6,32 +6,50 @@ makeWrapper, dpkg, electron, + _7zz, }: let mainProgram = "proton-mail"; version = "1.9.1"; - + linuxHash = "sha256-P2i/uX++F1JUgwSUyndYazjLSCK1mP+XSGICPUoo1VE="; + darwinHash = "sha256-U+I0ttToDiLLjEaKlvdb7HhE4dMrLryc251GXBVsQEM="; in stdenv.mkDerivation { pname = "protonmail-desktop"; inherit version; - src = fetchurl { - url = "https://proton.me/download/mail/linux/${version}/ProtonMail-desktop-beta.deb"; - hash = "sha256-P2i/uX++F1JUgwSUyndYazjLSCK1mP+XSGICPUoo1VE="; - }; + src = + { + "x86_64-linux" = fetchurl { + url = "https://proton.me/download/mail/linux/${version}/ProtonMail-desktop-beta.deb"; + hash = linuxHash; + }; + "aarch64-darwin" = fetchurl { + url = "https://proton.me/download/mail/macos/${version}/ProtonMail-desktop.dmg"; + hash = darwinHash; + }; + "x86_64-darwin" = fetchurl { + url = "https://proton.me/download/mail/macos/${version}/ProtonMail-desktop.dmg"; + hash = darwinHash; + }; + } + ."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); dontConfigure = true; dontBuild = true; - nativeBuildInputs = [ - dpkg - makeWrapper - asar - ]; + nativeBuildInputs = + lib.optionals stdenv.hostPlatform.isLinux [ + dpkg + makeWrapper + asar + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + _7zz + ]; # Rebuild the ASAR archive, hardcoding the resourcesPath - preInstall = '' + preInstall = lib.optionalString stdenv.hostPlatform.isLinux '' asar extract usr/lib/proton-mail/resources/app.asar tmp rm usr/lib/proton-mail/resources/app.asar substituteInPlace tmp/.webpack/main/index.js \ @@ -42,11 +60,17 @@ stdenv.mkDerivation { installPhase = '' runHook preInstall - + '' + + lib.optionalString stdenv.hostPlatform.isLinux '' mkdir -p $out/share/proton-mail cp -r usr/share/ $out/ cp -r usr/lib/proton-mail/resources/* $out/share/proton-mail/ - + '' + + lib.optionalString stdenv.hostPlatform.isDarwin '' + mkdir -p $out/Applications + cp -r "Proton Mail.app" $out/Applications/ + '' + + '' runHook postInstall ''; @@ -72,7 +96,8 @@ stdenv.mkDerivation { ]; platforms = [ "x86_64-linux" - ]; + ] + ++ lib.platforms.darwin; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; inherit mainProgram; diff --git a/pkgs/by-name/pr/protonmail-desktop/update.sh b/pkgs/by-name/pr/protonmail-desktop/update.sh index bd197203b8bc..5803ae0dcc64 100755 --- a/pkgs/by-name/pr/protonmail-desktop/update.sh +++ b/pkgs/by-name/pr/protonmail-desktop/update.sh @@ -1,11 +1,19 @@ #!/usr/bin/env nix-shell -#!nix-shell -i bash -p common-updater-scripts jq +#!nix-shell -i bash -p coreutils jq # shellcheck disable=SC1008 set -eu -o pipefail +cd "$(dirname "${BASH_SOURCE[0]}")" + latestVersion=$(curl https://proton.me/download/mail/linux/version.json | jq -r 'first(.Releases[])|.Version') -downloadUrl="https://proton.me/download/mail/linux/${latestVersion}/ProtonMail-desktop-beta.deb" -latestSha=$(nix store prefetch-file "$downloadUrl" --json | jq -r '.hash') -update-source-version "protonmail-desktop" "$latestVersion" "$latestSha" --ignore-same-version --file=./pkgs/by-name/pr/protonmail-desktop/package.nix +linuxDownloadUrl="https://proton.me/download/mail/linux/${latestVersion}/ProtonMail-desktop-beta.deb" +darwinDownloadUrl="https://proton.me/download/mail/macos/${latestVersion}/ProtonMail-desktop.dmg" + +latestLinuxSha=$(nix store prefetch-file "$linuxDownloadUrl" --json | jq -r '.hash') +latestDarwinSha=$(nix store prefetch-file "$darwinDownloadUrl" --json | jq -r '.hash') + +sed -i "s|version = \".*\";|version = \"${latestVersion}\";|" ./package.nix +sed -i "s|linuxHash = \"sha256-[^\"]*\";|linuxHash = \"${latestLinuxSha}\";|" ./package.nix +sed -i "s|darwinHash = \"sha256-[^\"]*\";|darwinHash = \"${latestDarwinSha}\";|" ./package.nix From d61c7bce42a2953fda19924cf2f2767414da2a7e Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 2 Oct 2025 19:03:03 +0000 Subject: [PATCH 25/42] vimPlugins.kiwi-nvim: init at 2025-07-07 --- pkgs/applications/editors/vim/plugins/generated.nix | 13 +++++++++++++ .../editors/vim/plugins/vim-plugin-names | 1 + 2 files changed, 14 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index 87a6b6450105..6ac9e4c18997 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -6975,6 +6975,19 @@ final: prev: { meta.hydraPlatforms = [ ]; }; + kiwi-nvim = buildVimPlugin { + pname = "kiwi.nvim"; + version = "2025-07-07"; + src = fetchFromGitHub { + owner = "serenevoid"; + repo = "kiwi.nvim"; + rev = "61e86fc29365e32b44c2914a2b10c90d04a3b22e"; + sha256 = "1knma0bjpvakiki9iwkhqxqsdzyx3dgyvhds9v3h0bsjyj15nj7x"; + }; + meta.homepage = "https://github.com/serenevoid/kiwi.nvim/"; + meta.hydraPlatforms = [ ]; + }; + kmonad-vim = buildVimPlugin { pname = "kmonad-vim"; version = "2022-03-20"; diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index ba20566ef954..0d6555afa32b 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -535,6 +535,7 @@ https://github.com/webhooked/kanso.nvim/,HEAD, https://github.com/imsnif/kdl.vim/,HEAD, https://github.com/anuvyklack/keymap-layer.nvim/,HEAD, https://github.com/mikesmithgh/kitty-scrollback.nvim/,HEAD, +https://github.com/serenevoid/kiwi.nvim/,HEAD, https://github.com/kmonad/kmonad-vim/,, https://github.com/frabjous/knap/,HEAD, https://github.com/b3nj5m1n/kommentary/,, From 445d18171f877c81023a96f89ca8e3e74b1b798a Mon Sep 17 00:00:00 2001 From: David Morgan Date: Thu, 2 Oct 2025 17:19:46 +0100 Subject: [PATCH 26/42] cdktf-cli: migrate from nodePackages --- pkgs/by-name/cd/cdktf-cli/package.nix | 158 ++++ pkgs/development/node-packages/aliases.nix | 1 + .../node-packages/main-programs.nix | 1 - .../node-packages/node-packages.json | 1 - .../node-packages/node-packages.nix | 865 ------------------ 5 files changed, 159 insertions(+), 867 deletions(-) create mode 100644 pkgs/by-name/cd/cdktf-cli/package.nix diff --git a/pkgs/by-name/cd/cdktf-cli/package.nix b/pkgs/by-name/cd/cdktf-cli/package.nix new file mode 100644 index 000000000000..cb7372dc5d76 --- /dev/null +++ b/pkgs/by-name/cd/cdktf-cli/package.nix @@ -0,0 +1,158 @@ +{ + lib, + stdenv, + buildGoModule, + faketty, + fetchFromGitHub, + fetchYarnDeps, + fixup-yarn-lock, + go, + makeWrapper, + nodejs, + nix-update-script, + patchelf, + removeReferencesTo, + testers, + yarn, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "cdktf-cli"; + version = "0.21.0"; + + src = fetchFromGitHub { + owner = "hashicorp"; + repo = "terraform-cdk"; + tag = "v${finalAttrs.version}"; + hash = "sha256-iqy8j1bqwjSRBOj8kjFtAq9dLiv6dDbJsiFGQUhGW7k="; + }; + + offlineCache = fetchYarnDeps { + yarnLock = "${finalAttrs.src}/yarn.lock"; + hash = "sha256-qGjzy/+u8Ui9aHK0sX3MfYbkj5Cqab4RlhOgrwbEmGs="; + }; + + hcl2json-go-modules = + (buildGoModule { + pname = "cdktf-hcl2json-go-modules"; + inherit (finalAttrs) version src; + modRoot = "packages/@cdktf/hcl2json"; + vendorHash = "sha256-OiKPq0CHkOxJaFzgsaNJ02tasvHtHWylmaPRPayJob4="; + proxyVendor = true; + doCheck = false; + env.GOWORK = "off"; + }).goModules; + + hcltools-go-modules = + (buildGoModule { + pname = "cdktf-hcltools-go-modules"; + inherit (finalAttrs) version src; + modRoot = "packages/@cdktf/hcl-tools"; + vendorHash = "sha256-orGxkYEQVtTKvXb7/FD/CLwqSINgBQFTF5arbR0xAvE="; + proxyVendor = true; + doCheck = false; + env.GOWORK = "off"; + }).goModules; + + strictDeps = true; + disallowedReferences = [ go ]; + + nativeBuildInputs = [ + faketty + fixup-yarn-lock + go + makeWrapper + nodejs + patchelf + removeReferencesTo + yarn + ]; + + postPatch = '' + # wasm_exec has moved to lib in newer versions of Go + substituteInPlace packages/@cdktf/hcl-tools/prebuild.sh \ + --replace-fail "misc/wasm/wasm_exec.js" "lib/wasm/wasm_exec.js" + substituteInPlace packages/@cdktf/hcl2json/prebuild.sh \ + --replace-fail "misc/wasm/wasm_exec.js" "lib/wasm/wasm_exec.js" + ''; + + preConfigure = '' + export GOCACHE=$TMPDIR/go-cache + export GOPATH=$TMPDIR/go + export GOPROXY=file://${finalAttrs.hcltools-go-modules},file://${finalAttrs.hcl2json-go-modules} + export GOSUMDB=off + + # Stop the build from trying to write checkpoints to /var/empty/ + export CHECKPOINT_DISABLE=1 + ''; + + configurePhase = '' + runHook preConfigure + + export HOME=$(mktemp -d) + yarn config --offline set yarn-offline-mirror $offlineCache + fixup-yarn-lock yarn.lock + yarn --offline --frozen-lockfile --ignore-platform --ignore-scripts --no-progress --non-interactive install + patchShebangs node_modules packages + + runHook postConfigure + ''; + + buildPhase = '' + runHook preBuild + + faketty yarn --offline build + + runHook postBuild + ''; + + doCheck = true; + checkPhase = '' + runHook preCheck + + # Skip tests that require terraform (unfree) + yarn --offline workspace cdktf-cli test -- \ + --testPathIgnorePatterns \ + "src/test/cmds/(convert|init).test.ts" + + runHook postCheck + ''; + + installPhase = '' + runHook preInstall + + yarn --offline --production install + + mkdir -p "$out/lib/node_modules/cdktf-cli" + cp -rL node_modules packages/cdktf-cli/bundle packages/cdktf-cli/package.json "$out/lib/node_modules/cdktf-cli/" + + makeWrapper "${lib.getExe nodejs}" "$out/bin/cdktf" \ + --add-flags "$out/lib/node_modules/cdktf-cli/bundle/bin/cdktf.js" + + runHook postInstall + ''; + + postInstall = '' + # Go isn't needed at runtime, so remove these to decrease the closure size + remove-references-to -t ${go} \ + "$out/lib/node_modules/cdktf-cli/node_modules/@cdktf/hcl-tools/main.wasm" \ + "$out/lib/node_modules/cdktf-cli/node_modules/@cdktf/hcl2json/main.wasm" + ''; + + passthru = { + tests.version = testers.testVersion { + package = finalAttrs.finalPackage; + }; + updateScript = nix-update-script { }; + }; + + meta = { + description = "CDK for Terraform CLI"; + homepage = "https://github.com/hashicorp/terraform-cdk"; + changelog = "https://github.com/hashicorp/terraform-cdk/releases/tag/${finalAttrs.src.tag}"; + license = lib.licenses.mpl20; + mainProgram = "cdktf"; + maintainers = with lib.maintainers; [ deejayem ]; + platforms = lib.platforms.unix; + }; +}) diff --git a/pkgs/development/node-packages/aliases.nix b/pkgs/development/node-packages/aliases.nix index 052538e0e9db..d4db841d5a9a 100644 --- a/pkgs/development/node-packages/aliases.nix +++ b/pkgs/development/node-packages/aliases.nix @@ -68,6 +68,7 @@ mapAliases { inherit (pkgs) carbon-now-cli; # added 2023-08-17 inherit (pkgs) carto; # added 2023-08-17 castnow = pkgs.castnow; # added 2023-07-30 + inherit (pkgs) cdktf-cli; # added 2025-10-02 inherit (pkgs) clean-css-cli; # added 2023-08-18 inherit (pkgs) clubhouse-cli; # added 2023-08-18 inherit (pkgs) coc-clangd; # added 2024-06-29 diff --git a/pkgs/development/node-packages/main-programs.nix b/pkgs/development/node-packages/main-programs.nix index 4f92b30cd720..bfdee89b5730 100644 --- a/pkgs/development/node-packages/main-programs.nix +++ b/pkgs/development/node-packages/main-programs.nix @@ -18,7 +18,6 @@ "@webassemblyjs/wast-refmt-1.11.1" = "wast-refmt"; aws-cdk = "cdk"; cdk8s-cli = "cdk8s"; - cdktf-cli = "cdktf"; clipboard-cli = "clipboard"; conventional-changelog-cli = "conventional-changelog"; cpy-cli = "cpy"; diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index 4933640657c4..20ab0ae43e74 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -21,7 +21,6 @@ , "browserify" , "browser-sync" , "cdk8s-cli" -, "cdktf-cli" , "clipboard-cli" , "coc-cmake" , "coc-emmet" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index a3c9440464d0..6f794d6c0d49 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -46060,871 +46060,6 @@ in bypassCache = true; reconstructLock = true; }; - cdktf-cli = nodeEnv.buildNodePackage { - name = "cdktf-cli"; - packageName = "cdktf-cli"; - version = "0.20.11"; - src = fetchurl { - url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.20.11.tgz"; - sha512 = "kqyTemob5ocfKmpEkz+nSo2ULKHz1/j1dj3i6+7Evlcl1SHYBoOCXIJBYIggOPXj93cvEN0fzoaHE6Q8xCUAEg=="; - }; - dependencies = [ - ( - sources."@alcalzone/ansi-tokenize-0.1.3" - // { - dependencies = [ - sources."ansi-styles-6.2.1" - sources."is-fullwidth-code-point-4.0.0" - ]; - } - ) - sources."@babel/code-frame-7.26.2" - sources."@babel/generator-7.26.3" - sources."@babel/helper-string-parser-7.25.9" - sources."@babel/helper-validator-identifier-7.25.9" - ( - sources."@babel/parser-7.26.10" - // { - dependencies = [ - sources."@babel/types-7.26.10" - ]; - } - ) - sources."@babel/template-7.25.9" - sources."@babel/types-7.26.3" - ( - sources."@cdktf/cli-core-0.20.11" - // { - dependencies = [ - ( - sources."ansi-escapes-4.3.2" - // { - dependencies = [ - sources."type-fest-0.21.3" - ]; - } - ) - sources."auto-bind-4.0.0" - sources."cli-boxes-2.2.1" - sources."cli-cursor-3.1.0" - sources."cli-truncate-2.1.0" - sources."code-excerpt-3.0.0" - sources."convert-to-spaces-1.0.2" - sources."indent-string-4.0.0" - sources."ink-3.2.0" - sources."patch-console-1.0.0" - sources."react-17.0.2" - sources."react-reconciler-0.26.2" - sources."restore-cursor-3.1.0" - sources."scheduler-0.20.2" - sources."semver-7.6.3" - sources."slice-ansi-3.0.0" - sources."type-fest-0.12.0" - sources."utf-8-validate-5.0.10" - sources."uuid-8.3.2" - sources."widest-line-3.1.0" - sources."wrap-ansi-6.2.0" - sources."ws-7.5.10" - ]; - } - ) - ( - sources."@cdktf/commons-0.20.11" - // { - dependencies = [ - sources."fs-extra-11.2.0" - sources."jsonfile-6.1.0" - sources."universalify-2.0.1" - ]; - } - ) - sources."@cdktf/hcl-tools-0.20.11" - ( - sources."@cdktf/hcl2cdk-0.20.11" - // { - dependencies = [ - sources."brace-expansion-2.0.1" - sources."glob-10.4.5" - sources."minimatch-9.0.5" - ]; - } - ) - ( - sources."@cdktf/hcl2json-0.20.11" - // { - dependencies = [ - sources."fs-extra-11.2.0" - sources."jsonfile-6.1.0" - sources."universalify-2.0.1" - ]; - } - ) - sources."@cdktf/node-pty-prebuilt-multiarch-0.10.1-pre.11" - ( - sources."@cdktf/provider-generator-0.20.11" - // { - dependencies = [ - sources."brace-expansion-2.0.1" - sources."glob-10.4.5" - sources."minimatch-9.0.5" - ]; - } - ) - ( - sources."@cdktf/provider-schema-0.20.11" - // { - dependencies = [ - sources."fs-extra-11.2.0" - sources."jsonfile-6.1.0" - sources."universalify-2.0.1" - ]; - } - ) - ( - sources."@inquirer/checkbox-1.5.2" - // { - dependencies = [ - sources."@inquirer/core-6.0.0" - sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.24" - sources."ansi-escapes-4.3.2" - sources."signal-exit-4.1.0" - sources."type-fest-0.21.3" - sources."undici-types-6.19.8" - sources."wrap-ansi-6.2.0" - ]; - } - ) - ( - sources."@inquirer/confirm-2.0.17" - // { - dependencies = [ - sources."@inquirer/core-6.0.0" - sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.24" - sources."ansi-escapes-4.3.2" - sources."signal-exit-4.1.0" - sources."type-fest-0.21.3" - sources."undici-types-6.19.8" - sources."wrap-ansi-6.2.0" - ]; - } - ) - ( - sources."@inquirer/core-2.3.1" - // { - dependencies = [ - sources."@types/node-20.17.24" - sources."ansi-escapes-4.3.2" - sources."type-fest-0.21.3" - sources."undici-types-6.19.8" - sources."wrap-ansi-6.2.0" - ]; - } - ) - ( - sources."@inquirer/editor-1.2.15" - // { - dependencies = [ - sources."@inquirer/core-6.0.0" - sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.24" - sources."ansi-escapes-4.3.2" - sources."signal-exit-4.1.0" - sources."type-fest-0.21.3" - sources."undici-types-6.19.8" - sources."wrap-ansi-6.2.0" - ]; - } - ) - ( - sources."@inquirer/expand-1.1.16" - // { - dependencies = [ - sources."@inquirer/core-6.0.0" - sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.24" - sources."ansi-escapes-4.3.2" - sources."signal-exit-4.1.0" - sources."type-fest-0.21.3" - sources."undici-types-6.19.8" - sources."wrap-ansi-6.2.0" - ]; - } - ) - ( - sources."@inquirer/input-1.2.16" - // { - dependencies = [ - sources."@inquirer/core-6.0.0" - sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.24" - sources."ansi-escapes-4.3.2" - sources."signal-exit-4.1.0" - sources."type-fest-0.21.3" - sources."undici-types-6.19.8" - sources."wrap-ansi-6.2.0" - ]; - } - ) - ( - sources."@inquirer/password-1.1.16" - // { - dependencies = [ - sources."@inquirer/core-6.0.0" - sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.24" - sources."ansi-escapes-4.3.2" - sources."signal-exit-4.1.0" - sources."type-fest-0.21.3" - sources."undici-types-6.19.8" - sources."wrap-ansi-6.2.0" - ]; - } - ) - sources."@inquirer/prompts-2.3.1" - ( - sources."@inquirer/rawlist-1.2.16" - // { - dependencies = [ - sources."@inquirer/core-6.0.0" - sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.24" - sources."ansi-escapes-4.3.2" - sources."signal-exit-4.1.0" - sources."type-fest-0.21.3" - sources."undici-types-6.19.8" - sources."wrap-ansi-6.2.0" - ]; - } - ) - ( - sources."@inquirer/select-1.3.3" - // { - dependencies = [ - sources."@inquirer/core-6.0.0" - sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.24" - sources."ansi-escapes-4.3.2" - sources."signal-exit-4.1.0" - sources."type-fest-0.21.3" - sources."undici-types-6.19.8" - sources."wrap-ansi-6.2.0" - ]; - } - ) - sources."@inquirer/type-1.5.5" - ( - sources."@isaacs/cliui-8.0.2" - // { - dependencies = [ - sources."ansi-regex-6.1.0" - sources."ansi-styles-6.2.1" - sources."emoji-regex-9.2.2" - sources."string-width-5.1.2" - sources."strip-ansi-7.1.0" - sources."wrap-ansi-8.1.0" - ]; - } - ) - sources."@jridgewell/gen-mapping-0.3.8" - sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.2.1" - sources."@jridgewell/sourcemap-codec-1.5.0" - sources."@jridgewell/trace-mapping-0.3.25" - sources."@jsii/check-node-1.102.0" - sources."@jsii/spec-1.109.0" - sources."@nodelib/fs.scandir-2.1.5" - sources."@nodelib/fs.stat-2.0.5" - sources."@nodelib/fs.walk-1.2.8" - sources."@sentry-internal/tracing-7.120.1" - sources."@sentry/core-7.120.1" - sources."@sentry/integrations-7.120.1" - sources."@sentry/node-7.120.1" - sources."@sentry/types-7.120.1" - sources."@sentry/utils-7.120.1" - sources."@types/mute-stream-0.0.1" - sources."@types/node-18.19.67" - sources."@types/react-19.0.10" - sources."@types/wrap-ansi-3.0.0" - sources."@types/yauzl-2.10.3" - sources."@types/yoga-layout-1.9.2" - sources."@xmldom/xmldom-0.8.10" - sources."address-1.2.2" - sources."agent-base-6.0.2" - sources."ajv-8.17.1" - sources."ansi-escapes-7.0.0" - sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" - sources."anymatch-3.1.3" - sources."archiver-5.3.2" - ( - sources."archiver-utils-2.1.0" - // { - dependencies = [ - sources."isarray-1.0.0" - sources."readable-stream-2.3.8" - sources."safe-buffer-5.1.2" - ]; - } - ) - sources."arr-rotate-1.0.0" - sources."array-buffer-byte-length-1.0.2" - sources."astral-regex-2.0.0" - sources."async-3.2.6" - sources."auto-bind-5.0.1" - sources."available-typed-arrays-1.0.7" - sources."balanced-match-1.0.2" - sources."base64-js-1.5.1" - sources."binary-extensions-2.3.0" - sources."bl-4.1.0" - sources."brace-expansion-1.1.11" - sources."braces-3.0.3" - sources."buffer-5.7.1" - sources."buffer-crc32-0.2.13" - sources."bufferutil-4.0.9" - sources."call-bind-1.0.8" - sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.4" - sources."camelcase-6.3.0" - sources."case-1.6.3" - sources."cdktf-0.20.11" - sources."chalk-4.1.2" - sources."chardet-0.7.0" - sources."chokidar-3.6.0" - sources."chownr-1.1.4" - sources."ci-info-3.9.0" - sources."cli-boxes-3.0.0" - sources."cli-cursor-4.0.0" - sources."cli-spinners-2.9.2" - ( - sources."cli-truncate-4.0.0" - // { - dependencies = [ - sources."ansi-regex-6.1.0" - sources."ansi-styles-6.2.1" - sources."emoji-regex-10.4.0" - sources."is-fullwidth-code-point-4.0.0" - sources."slice-ansi-5.0.0" - sources."string-width-7.2.0" - sources."strip-ansi-7.1.0" - ]; - } - ) - sources."cli-width-4.1.0" - sources."cliui-8.0.1" - sources."clone-2.1.2" - sources."code-excerpt-4.0.0" - ( - sources."codemaker-1.102.0" - // { - dependencies = [ - sources."fs-extra-10.1.0" - sources."jsonfile-6.1.0" - sources."universalify-2.0.1" - ]; - } - ) - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."commonmark-0.31.2" - sources."compress-commons-4.1.2" - sources."concat-map-0.0.1" - sources."constructs-10.3.0" - sources."convert-to-spaces-2.0.1" - sources."core-util-is-1.0.3" - sources."crc-32-1.2.2" - sources."crc32-stream-4.0.3" - sources."cross-fetch-3.1.8" - sources."cross-spawn-7.0.6" - sources."csstype-3.1.3" - sources."date-format-4.0.14" - sources."debug-4.4.0" - sources."decamelize-5.0.1" - sources."decompress-response-6.0.0" - sources."deep-equal-2.2.3" - sources."deep-extend-0.6.0" - sources."deepmerge-4.3.1" - sources."define-data-property-1.1.4" - sources."define-properties-1.2.1" - sources."detect-indent-5.0.0" - sources."detect-libc-2.0.3" - sources."detect-newline-2.1.0" - sources."detect-port-1.6.1" - ( - sources."downlevel-dts-0.11.0" - // { - dependencies = [ - sources."typescript-5.9.0-dev.20250314" - ]; - } - ) - sources."dunder-proto-1.0.1" - sources."eastasianwidth-0.2.0" - sources."emoji-regex-8.0.0" - sources."encoding-0.1.13" - sources."end-of-stream-1.4.4" - sources."entities-3.0.1" - sources."environment-1.1.0" - sources."es-define-property-1.0.1" - sources."es-errors-1.3.0" - sources."es-get-iterator-1.1.3" - sources."es-object-atoms-1.1.1" - sources."es-toolkit-1.33.0" - sources."escalade-3.2.0" - sources."escape-string-regexp-2.0.0" - sources."events-3.3.0" - sources."execa-5.1.1" - sources."expand-template-2.0.3" - ( - sources."external-editor-3.1.0" - // { - dependencies = [ - sources."iconv-lite-0.4.24" - ]; - } - ) - ( - sources."extract-zip-2.0.1" - // { - dependencies = [ - sources."get-stream-5.2.0" - ]; - } - ) - sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.3.3" - sources."fast-uri-3.0.6" - sources."fastq-1.19.1" - sources."fd-slicer-1.1.0" - ( - sources."figures-3.2.0" - // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - } - ) - sources."fill-range-7.1.1" - sources."find-up-3.0.0" - sources."flatted-3.3.3" - sources."follow-redirects-1.15.9" - sources."for-each-0.3.5" - ( - sources."foreground-child-3.3.1" - // { - dependencies = [ - sources."signal-exit-4.1.0" - ]; - } - ) - sources."fs-constants-1.0.0" - sources."fs-extra-8.1.0" - sources."fs.realpath-1.0.0" - sources."function-bind-1.1.2" - sources."functions-have-names-1.2.3" - sources."get-caller-file-2.0.5" - sources."get-east-asian-width-1.3.0" - sources."get-intrinsic-1.3.0" - sources."get-proto-1.0.1" - sources."get-stream-6.0.1" - sources."github-from-package-0.0.0" - ( - sources."glob-7.2.3" - // { - dependencies = [ - sources."minimatch-3.1.2" - ]; - } - ) - sources."glob-parent-5.1.2" - sources."gopd-1.2.0" - sources."graceful-fs-4.2.11" - sources."graphology-0.25.4" - sources."graphology-types-0.24.7" - sources."has-bigints-1.1.0" - sources."has-flag-4.0.0" - sources."has-property-descriptors-1.0.2" - sources."has-symbols-1.1.0" - sources."has-tostringtag-1.0.2" - sources."hasown-2.0.2" - sources."https-proxy-agent-5.0.1" - sources."human-signals-2.1.0" - sources."iconv-lite-0.6.3" - sources."ieee754-1.2.1" - sources."immediate-3.0.6" - sources."indent-string-5.0.0" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."ini-1.3.8" - ( - sources."ink-5.2.0" - // { - dependencies = [ - sources."ansi-regex-6.1.0" - sources."ansi-styles-6.2.1" - sources."chalk-5.4.1" - sources."emoji-regex-10.4.0" - sources."string-width-7.2.0" - sources."strip-ansi-7.1.0" - sources."wrap-ansi-9.0.0" - ]; - } - ) - ( - sources."ink-select-input-4.2.2" - // { - dependencies = [ - ( - sources."ansi-escapes-4.3.2" - // { - dependencies = [ - sources."type-fest-0.21.3" - ]; - } - ) - sources."auto-bind-4.0.0" - sources."cli-boxes-2.2.1" - sources."cli-cursor-3.1.0" - sources."cli-truncate-2.1.0" - sources."code-excerpt-3.0.0" - sources."convert-to-spaces-1.0.2" - sources."indent-string-4.0.0" - sources."ink-3.2.0" - sources."patch-console-1.0.0" - sources."react-17.0.2" - sources."react-reconciler-0.26.2" - sources."restore-cursor-3.1.0" - sources."scheduler-0.20.2" - sources."slice-ansi-3.0.0" - sources."type-fest-0.12.0" - sources."utf-8-validate-5.0.10" - sources."widest-line-3.1.0" - sources."wrap-ansi-6.2.0" - sources."ws-7.5.10" - ]; - } - ) - sources."ink-spinner-4.0.3" - sources."ink-table-3.1.0" - sources."ink-testing-library-2.1.0" - sources."ink-use-stdout-dimensions-1.0.5" - sources."internal-slot-1.1.0" - sources."interpret-1.4.0" - sources."is-arguments-1.2.0" - sources."is-array-buffer-3.0.5" - sources."is-bigint-1.1.0" - sources."is-binary-path-2.1.0" - sources."is-boolean-object-1.2.2" - sources."is-callable-1.2.7" - ( - sources."is-ci-2.0.0" - // { - dependencies = [ - sources."ci-info-2.0.0" - ]; - } - ) - sources."is-core-module-2.16.1" - sources."is-date-object-1.1.0" - sources."is-docker-2.2.1" - sources."is-extglob-2.1.1" - sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.3" - sources."is-in-ci-1.0.0" - sources."is-map-2.0.3" - sources."is-number-7.0.0" - sources."is-number-object-1.1.1" - sources."is-regex-1.2.1" - sources."is-set-2.0.3" - sources."is-shared-array-buffer-1.0.4" - sources."is-stream-2.0.1" - sources."is-string-1.1.1" - sources."is-symbol-1.1.1" - sources."is-weakmap-2.0.2" - sources."is-weakset-2.0.4" - sources."is-wsl-2.2.0" - sources."isarray-2.0.5" - sources."isexe-2.0.0" - sources."jackspeak-3.4.3" - sources."js-tokens-4.0.0" - sources."jsesc-3.1.0" - sources."jsii-5.4.31" - ( - sources."jsii-pacmak-1.102.0" - // { - dependencies = [ - sources."cliui-7.0.4" - sources."escape-string-regexp-4.0.0" - sources."fs-extra-10.1.0" - sources."jsonfile-6.1.0" - sources."universalify-2.0.1" - sources."yargs-16.2.0" - sources."yargs-parser-20.2.9" - ]; - } - ) - ( - sources."jsii-reflect-1.109.0" - // { - dependencies = [ - sources."@jsii/check-node-1.109.0" - sources."cliui-7.0.4" - sources."fs-extra-10.1.0" - sources."jsonfile-6.1.0" - sources."universalify-2.0.1" - sources."yargs-16.2.0" - sources."yargs-parser-20.2.9" - ]; - } - ) - sources."jsii-rosetta-5.4.30" - sources."json-schema-traverse-1.0.0" - sources."jsonfile-4.0.0" - ( - sources."lazystream-1.0.1" - // { - dependencies = [ - sources."isarray-1.0.0" - sources."readable-stream-2.3.8" - sources."safe-buffer-5.1.2" - ]; - } - ) - sources."lie-3.1.1" - sources."localforage-1.10.0" - sources."locate-path-3.0.0" - sources."lodash-4.17.21" - sources."lodash.defaults-4.2.0" - sources."lodash.difference-4.5.0" - sources."lodash.flatten-4.4.0" - sources."lodash.isequal-4.5.0" - sources."lodash.isplainobject-4.0.6" - sources."lodash.union-4.6.0" - sources."log4js-6.9.1" - sources."loose-envify-1.4.0" - sources."lru-cache-10.4.3" - sources."math-intrinsics-1.1.0" - sources."mdurl-1.0.1" - sources."merge-stream-2.0.0" - sources."merge2-1.4.1" - sources."micromatch-4.0.8" - sources."mimic-fn-2.1.0" - sources."mimic-response-3.1.0" - ( - sources."minimatch-5.1.6" - // { - dependencies = [ - sources."brace-expansion-2.0.1" - ]; - } - ) - sources."minimist-1.2.8" - sources."minipass-7.1.2" - sources."mkdirp-classic-0.5.3" - sources."ms-2.1.3" - sources."mute-stream-1.0.0" - sources."nan-2.22.2" - sources."napi-build-utils-2.0.0" - sources."node-abi-3.74.0" - sources."node-fetch-2.7.0" - sources."node-gyp-build-4.8.4" - sources."normalize-path-3.0.0" - sources."npm-run-path-4.0.1" - sources."object-assign-4.1.1" - sources."object-hash-2.2.0" - sources."object-inspect-1.13.4" - sources."object-is-1.1.6" - sources."object-keys-1.1.1" - sources."object.assign-4.1.7" - sources."obliterator-2.0.5" - sources."once-1.4.0" - sources."onetime-5.1.2" - sources."oo-ascii-tree-1.109.0" - sources."open-7.4.2" - sources."os-tmpdir-1.0.2" - sources."p-limit-2.3.0" - sources."p-locate-3.0.0" - sources."p-try-2.2.0" - sources."package-json-from-dist-1.0.1" - sources."parse-gitignore-1.0.1" - sources."patch-console-2.0.0" - sources."path-exists-3.0.0" - sources."path-is-absolute-1.0.1" - sources."path-key-3.1.1" - sources."path-parse-1.0.7" - sources."path-scurry-1.11.1" - sources."pend-1.2.0" - sources."picocolors-1.1.1" - sources."picomatch-2.3.1" - sources."pidtree-0.6.0" - sources."pidusage-3.0.2" - sources."pkg-up-3.1.0" - sources."possible-typed-array-names-1.1.0" - sources."prebuild-install-7.1.3" - sources."prettier-2.8.8" - sources."process-nextick-args-2.0.1" - sources."pump-3.0.2" - sources."queue-microtask-1.2.3" - sources."rc-1.2.8" - sources."react-19.0.0" - ( - sources."react-devtools-core-4.28.5" - // { - dependencies = [ - sources."utf-8-validate-5.0.10" - sources."ws-7.5.10" - ]; - } - ) - ( - sources."react-reconciler-0.29.2" - // { - dependencies = [ - sources."react-18.3.1" - ]; - } - ) - sources."readable-stream-3.6.2" - sources."readdir-glob-1.1.3" - sources."readdirp-3.6.0" - sources."rechoir-0.6.2" - sources."regexp.prototype.flags-1.5.4" - sources."require-directory-2.1.1" - sources."require-from-string-2.0.2" - sources."reserved-words-0.1.2" - sources."resolve-1.22.10" - sources."restore-cursor-4.0.0" - sources."reusify-1.1.0" - sources."rfdc-1.4.1" - sources."run-async-3.0.0" - sources."run-parallel-1.2.0" - sources."safe-buffer-5.2.1" - sources."safe-regex-test-1.1.0" - sources."safer-buffer-2.1.2" - sources."sax-1.4.1" - sources."scheduler-0.23.2" - sources."semver-7.7.1" - ( - sources."semver-intersect-1.5.0" - // { - dependencies = [ - sources."semver-6.3.1" - ]; - } - ) - sources."set-function-length-1.2.2" - sources."set-function-name-2.0.2" - sources."shebang-command-2.0.0" - sources."shebang-regex-3.0.0" - sources."shell-quote-1.8.2" - sources."shelljs-0.8.5" - sources."side-channel-1.1.0" - sources."side-channel-list-1.0.0" - sources."side-channel-map-1.0.1" - sources."side-channel-weakmap-1.0.2" - sources."signal-exit-3.0.7" - sources."simple-concat-1.0.1" - sources."simple-get-4.0.1" - ( - sources."slice-ansi-7.1.0" - // { - dependencies = [ - sources."ansi-styles-6.2.1" - sources."is-fullwidth-code-point-5.0.0" - ]; - } - ) - sources."sort-json-2.0.1" - sources."spdx-license-list-6.9.0" - sources."sscaff-1.2.274" - sources."stack-utils-2.0.6" - sources."stop-iteration-iterator-1.1.0" - sources."stream-buffers-3.0.3" - sources."stream-chain-2.2.5" - sources."stream-json-1.9.1" - sources."streamroller-3.1.5" - sources."string-width-4.2.3" - sources."string-width-cjs-4.2.3" - ( - sources."string_decoder-1.1.1" - // { - dependencies = [ - sources."safe-buffer-5.1.2" - ]; - } - ) - sources."strip-ansi-6.0.1" - sources."strip-ansi-cjs-6.0.1" - sources."strip-final-newline-2.0.0" - sources."strip-json-comments-2.0.1" - sources."supports-color-7.2.0" - sources."supports-preserve-symlinks-flag-1.0.0" - sources."tar-fs-2.1.2" - sources."tar-stream-2.2.0" - sources."tmp-0.0.33" - sources."to-regex-range-5.0.1" - sources."tr46-0.0.3" - sources."tunnel-agent-0.6.0" - sources."type-fest-4.37.0" - sources."typescript-5.4.5" - sources."undici-types-5.26.5" - sources."universalify-0.1.2" - sources."utf-8-validate-6.0.5" - sources."util-deprecate-1.0.2" - sources."uuid-9.0.1" - sources."validator-13.12.0" - sources."webidl-conversions-3.0.1" - sources."whatwg-url-5.0.0" - sources."which-2.0.2" - sources."which-boxed-primitive-1.1.1" - sources."which-collection-1.0.2" - sources."which-typed-array-1.1.19" - ( - sources."widest-line-5.0.0" - // { - dependencies = [ - sources."ansi-regex-6.1.0" - sources."emoji-regex-10.4.0" - sources."string-width-7.2.0" - sources."strip-ansi-7.1.0" - ]; - } - ) - sources."workerpool-6.5.1" - sources."wrap-ansi-7.0.0" - sources."wrap-ansi-cjs-7.0.0" - sources."wrappy-1.0.2" - sources."ws-8.18.1" - sources."xml-js-1.6.11" - sources."xmlbuilder-15.1.1" - sources."xstate-4.38.3" - sources."y18n-5.0.8" - sources."yargs-17.7.2" - sources."yargs-parser-21.1.1" - sources."yauzl-2.10.0" - sources."yoga-layout-3.2.1" - sources."yoga-layout-prebuilt-1.10.0" - ( - sources."zip-stream-4.1.1" - // { - dependencies = [ - sources."archiver-utils-3.0.4" - ]; - } - ) - sources."zod-3.23.8" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "CDK for Terraform CLI"; - homepage = "https://github.com/hashicorp/terraform-cdk#readme"; - license = "MPL-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; clipboard-cli = nodeEnv.buildNodePackage { name = "clipboard-cli"; packageName = "clipboard-cli"; From 8a2856461f171effed784c05ab3f00687bd56d3f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 2 Oct 2025 22:13:55 +0000 Subject: [PATCH 27/42] qownnotes: 25.9.3 -> 25.10.0 --- pkgs/by-name/qo/qownnotes/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/qo/qownnotes/package.nix b/pkgs/by-name/qo/qownnotes/package.nix index fbe21e92e3a8..fe9f2f7ba55c 100644 --- a/pkgs/by-name/qo/qownnotes/package.nix +++ b/pkgs/by-name/qo/qownnotes/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "qownnotes"; appname = "QOwnNotes"; - version = "25.9.3"; + version = "25.10.0"; src = fetchurl { url = "https://github.com/pbek/QOwnNotes/releases/download/v${finalAttrs.version}/qownnotes-${finalAttrs.version}.tar.xz"; - hash = "sha256-B5xKZaayYNClf02O8KHXfqrDX7obS61dPAW999xn9Eo="; + hash = "sha256-hBRVho+BsxGSc+8XGur0AX7iZ/li9p5mM5N87vh92KA="; }; nativeBuildInputs = [ From 2df612e10694bdf999d4e040c6f330820f5716b3 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 3 Oct 2025 02:37:06 +0200 Subject: [PATCH 28/42] python3Packages.lxml-html-clean: 0.4.2 -> 0.4.3 https://github.com/fedora-python/lxml_html_clean/blob/0.4.3/CHANGES.rst --- .../lxml-html-clean/default.nix | 20 ++----------------- 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/pkgs/development/python-modules/lxml-html-clean/default.nix b/pkgs/development/python-modules/lxml-html-clean/default.nix index 07fbef60093a..12de281f9a14 100644 --- a/pkgs/development/python-modules/lxml-html-clean/default.nix +++ b/pkgs/development/python-modules/lxml-html-clean/default.nix @@ -9,32 +9,16 @@ buildPythonPackage rec { pname = "lxml-html-clean"; - version = "0.4.2"; + version = "0.4.3"; pyproject = true; src = fetchFromGitHub { owner = "fedora-python"; repo = "lxml_html_clean"; tag = version; - hash = "sha256-KGUFRbcaeDcX2jyoyyZMZsVTbN+h8uy+ugcritkZe38="; + hash = "sha256-pMZgECts7QqddI76EHnEDhQ0IoR/yioQXTqcg1npCOA="; }; - # Disable failing snapshot tests (AssertionError) - # https://github.com/fedora-python/lxml_html_clean/issues/24 - # As this derivation must use unittestCheckHook, we cannot use disabledTests - postPatch = '' - substituteInPlace tests/test_clean.py \ - --replace-fail \ - "test_host_whitelist_valid" \ - "DISABLED_test_host_whitelist_valid" \ - --replace-fail \ - "test_host_whitelist_invalid" \ - "DISABLED_test_host_whitelist_invalid" \ - --replace-fail \ - "test_host_whitelist_sneaky_userinfo" \ - "DISABLED_test_host_whitelist_sneaky_userinfo" - ''; - build-system = [ setuptools ]; dependencies = [ lxml ]; From cf948068259ec62a06125e2ffc70bd5319773dd6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 3 Oct 2025 00:39:16 +0000 Subject: [PATCH 29/42] cosmic-ext-applet-external-monitor-brightness: 0.0.1-unstable-2025-08-05 -> 0.0.1-unstable-2025-09-17 --- .../package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/co/cosmic-ext-applet-external-monitor-brightness/package.nix b/pkgs/by-name/co/cosmic-ext-applet-external-monitor-brightness/package.nix index b1d0bcb8a794..0e6d051ed6b2 100644 --- a/pkgs/by-name/co/cosmic-ext-applet-external-monitor-brightness/package.nix +++ b/pkgs/by-name/co/cosmic-ext-applet-external-monitor-brightness/package.nix @@ -11,13 +11,13 @@ }: rustPlatform.buildRustPackage { pname = "cosmic-ext-applet-external-monitor-brightness"; - version = "0.0.1-unstable-2025-08-05"; + version = "0.0.1-unstable-2025-09-17"; src = fetchFromGitHub { owner = "cosmic-utils"; repo = "cosmic-ext-applet-external-monitor-brightness"; - rev = "23104965bd9ab1988b040a60f3f1e5d64038e7ce"; - hash = "sha256-+Hu9bLEbue9bXaGfKa3InhdFI6qsBxccyQY8qzBYFPk="; + rev = "1f648171fcc1b187ca6603b78c650ea0f33daa79"; + hash = "sha256-QXQqHtXYoq2cg2DKL8DHZz2T+MsnCtI5mRJP036UC2U="; }; cargoHash = "sha256-ou7iukl1pHMfcJNemwLdZYYxugbJJQ53XpCYowUTj90="; From 9621932bea535677900c15c47dbc1a32f8ee9353 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 3 Oct 2025 00:39:35 +0000 Subject: [PATCH 30/42] cosmic-ext-applet-caffeine: 2025-09-29 -> 0-unstable-2025-09-29 --- pkgs/by-name/co/cosmic-ext-applet-caffeine/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/co/cosmic-ext-applet-caffeine/package.nix b/pkgs/by-name/co/cosmic-ext-applet-caffeine/package.nix index c219968bdb6f..306b8fd12279 100644 --- a/pkgs/by-name/co/cosmic-ext-applet-caffeine/package.nix +++ b/pkgs/by-name/co/cosmic-ext-applet-caffeine/package.nix @@ -9,7 +9,7 @@ }: rustPlatform.buildRustPackage { pname = "cosmic-ext-applet-caffeine"; - version = "2025-09-29"; + version = "0-unstable-2025-09-29"; src = fetchFromGitHub { owner = "tropicbliss"; From add034fd38c20a1c2dbd5486f3bf467a6f835768 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 3 Oct 2025 01:16:52 +0000 Subject: [PATCH 31/42] cosign: 2.6.0 -> 2.6.1 --- pkgs/by-name/co/cosign/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/co/cosign/package.nix b/pkgs/by-name/co/cosign/package.nix index 3558e55dad9e..2a628b6f43e7 100644 --- a/pkgs/by-name/co/cosign/package.nix +++ b/pkgs/by-name/co/cosign/package.nix @@ -13,13 +13,13 @@ buildGoModule (finalAttrs: { pname = "cosign"; - version = "2.6.0"; + version = "2.6.1"; src = fetchFromGitHub { owner = "sigstore"; repo = "cosign"; rev = "v${finalAttrs.version}"; - hash = "sha256-0Wl/+tSYGkp/UNByyQ396gxUSQ4lmC51v3t28gDwNnE="; + hash = "sha256-JQxVO7wZFyRovst3qb0EErDyIIhPNsIpBq/iQVf6djY="; }; buildInputs = lib.optional (stdenv.hostPlatform.isLinux && pivKeySupport) (lib.getDev pcsclite); @@ -29,7 +29,7 @@ buildGoModule (finalAttrs: { installShellFiles ]; - vendorHash = "sha256-1axjX8s1z6awjKLNYffOmLgltFZkbMFBBeFFigYWB9I="; + vendorHash = "sha256-7qVJMQI5htqMavrxFP2lQfQ/7b27bRWnNYg2cHmTZYE="; subPackages = [ "cmd/cosign" From e9840bcc4382e33addb0daa356fa6b4f159df9b1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 3 Oct 2025 01:19:24 +0000 Subject: [PATCH 32/42] grpc-client-cli: 1.22.5 -> 1.23.0 --- pkgs/by-name/gr/grpc-client-cli/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gr/grpc-client-cli/package.nix b/pkgs/by-name/gr/grpc-client-cli/package.nix index 03e6812b5667..5c73e3785494 100644 --- a/pkgs/by-name/gr/grpc-client-cli/package.nix +++ b/pkgs/by-name/gr/grpc-client-cli/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "grpc-client-cli"; - version = "1.22.5"; + version = "1.23.0"; src = fetchFromGitHub { owner = "vadimi"; repo = "grpc-client-cli"; rev = "v${version}"; - sha256 = "sha256-e6EqjaPTYC6HSgBqg8F+5tNt7C2/N1mniWxgv6t6y/w="; + sha256 = "sha256-hi0F3cuN2QMAkzrgk19SuyxEOs2cwDeeBS4NYr38Hzo="; }; - vendorHash = "sha256-BFjJpoAgbG16+26+m3cWxLTg5XCm/2b2vJiEzlbxqxQ="; + vendorHash = "sha256-/lIDY6xjSs5Uk5nw2dExyPQPXNHTJuQR+K8/7PB1kik="; meta = with lib; { description = "Generic gRPC command line client"; From 0f5b14a09a9c72ad9639b04f403eafd0aef7aaaa Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 3 Oct 2025 02:49:47 +0000 Subject: [PATCH 33/42] libretro.ppsspp: 0-unstable-2025-09-10 -> 0-unstable-2025-09-30 --- pkgs/applications/emulators/libretro/cores/ppsspp.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/ppsspp.nix b/pkgs/applications/emulators/libretro/cores/ppsspp.nix index b4e7026f0166..cb789b79d809 100644 --- a/pkgs/applications/emulators/libretro/cores/ppsspp.nix +++ b/pkgs/applications/emulators/libretro/cores/ppsspp.nix @@ -13,13 +13,13 @@ }: mkLibretroCore { core = "ppsspp"; - version = "0-unstable-2025-09-10"; + version = "0-unstable-2025-09-30"; src = fetchFromGitHub { owner = "hrydgard"; repo = "ppsspp"; - rev = "a240cb24070700fbf73a1522338ebd60011a0daf"; - hash = "sha256-A4tqLVmW6Y4boQRf80N0upFS+s6P+TQRXB/i8rg/I4g="; + rev = "2f4b1adc98d36a4d3fdd0a413d65a7a0b306ed4c"; + hash = "sha256-9azuw2uCwc1cpqnrqCBGp4uS2AHOc2gBJIaOTSullvs="; fetchSubmodules = true; }; From fc7dc7194c6692c18568132996791fc1ef09d5c9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 3 Oct 2025 05:24:11 +0000 Subject: [PATCH 34/42] androidStudioPackages.canary: 2025.1.4.5 -> 2025.2.1.3 --- pkgs/applications/editors/android-studio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/android-studio/default.nix b/pkgs/applications/editors/android-studio/default.nix index f85e293af354..f80b102c889f 100644 --- a/pkgs/applications/editors/android-studio/default.nix +++ b/pkgs/applications/editors/android-studio/default.nix @@ -24,8 +24,8 @@ let sha256Hash = "sha256-S8KK/EGev0v03fVywIkD6Ym3LrciGKXJVorzyZ1ljdQ="; }; latestVersion = { - version = "2025.1.4.5"; # "Android Studio Narwhal 4 Feature Drop | 2025.1.4 Canary 5" - sha256Hash = "sha256-gfhlcvqMDZPOmKgfp4XNrq9rucN1ZnY6WuBZYHYspGg="; + version = "2025.2.1.3"; # "Android Studio Otter | 2025.2.1 Canary 3" + sha256Hash = "sha256-McgPREXfErJ6vcHPKlAC4EVf61QedMV6J643LM5N7Wg="; }; in { From b27c2da6b8bc09064a7a1eb30d1381c5e4714301 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Fri, 3 Oct 2025 06:48:07 +0100 Subject: [PATCH 35/42] mutt: 2.2.14 -> 2.2.15 Changes: https://gitlab.com/muttmua/mutt/-/blob/mutt-2-2-15-rel/UPDATING?ref_type=tags --- pkgs/by-name/mu/mutt/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/mu/mutt/package.nix b/pkgs/by-name/mu/mutt/package.nix index 2edb07ab08d5..49d75313f582 100644 --- a/pkgs/by-name/mu/mutt/package.nix +++ b/pkgs/by-name/mu/mutt/package.nix @@ -31,7 +31,7 @@ assert gpgmeSupport -> sslSupport; stdenv.mkDerivation rec { pname = "mutt"; - version = "2.2.14"; + version = "2.2.15"; outputs = [ "out" "doc" @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://ftp.mutt.org/pub/mutt/${pname}-${version}.tar.gz"; - hash = "sha256-0WL7bUkeOvQ9b2L5Sbfmh7sMfCWE2lLJmpk1SiXeFO8="; + hash = "sha256-pRaGEE5CA/TCo7F2UnvjuV0I6AjpT9LcrbfDBWa/iU0="; }; patches = [ From 70c050747db6ed076aa8e3c9f3fb2cbb6ee1001c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 3 Oct 2025 06:20:35 +0000 Subject: [PATCH 36/42] quisk: 4.2.43 -> 4.2.44 --- pkgs/by-name/qu/quisk/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/qu/quisk/package.nix b/pkgs/by-name/qu/quisk/package.nix index 4423d723b787..79079cd67322 100644 --- a/pkgs/by-name/qu/quisk/package.nix +++ b/pkgs/by-name/qu/quisk/package.nix @@ -9,12 +9,12 @@ python3.pkgs.buildPythonApplication rec { pname = "quisk"; - version = "4.2.43"; + version = "4.2.44"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-z5O7Oz6Wa0Orr1RgKVoBzlyfdlpLKi96NHNjffLkJ80="; + hash = "sha256-OSGrLbCS255e/btagD7RCVpLpyIX1jveeJnzIwyegH4="; }; buildInputs = [ From 2468a779005dbdf1cf229ca3aedc010473876e83 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 3 Oct 2025 07:36:30 +0000 Subject: [PATCH 37/42] python3Packages.asyncer: 0.0.8 -> 0.0.9 --- pkgs/development/python-modules/asyncer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/asyncer/default.nix b/pkgs/development/python-modules/asyncer/default.nix index 2d1e79dde057..daa9524cf7ea 100644 --- a/pkgs/development/python-modules/asyncer/default.nix +++ b/pkgs/development/python-modules/asyncer/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "asyncer"; - version = "0.0.8"; + version = "0.0.9"; pyproject = true; src = fetchFromGitHub { owner = "fastapi"; repo = "asyncer"; tag = version; - hash = "sha256-SbByOiTYzp+G+SvsDqXOQBAG6nigtBXiQmfGgfKRqvM="; + hash = "sha256-1M5MGaxfEfJMCfAoGorNGbRBZdvLue5lHu8DuR96mLo="; }; build-system = [ pdm-backend ]; From cb54ad89ff2cf86a339bf32cb3f042e0cbfbcbb9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 3 Oct 2025 08:30:15 +0000 Subject: [PATCH 38/42] lint-staged: 16.2.0 -> 16.2.3 --- pkgs/by-name/li/lint-staged/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/li/lint-staged/package.nix b/pkgs/by-name/li/lint-staged/package.nix index a14401cebd34..d8c0d9bc1150 100644 --- a/pkgs/by-name/li/lint-staged/package.nix +++ b/pkgs/by-name/li/lint-staged/package.nix @@ -8,16 +8,16 @@ buildNpmPackage rec { pname = "lint-staged"; - version = "16.2.0"; + version = "16.2.3"; src = fetchFromGitHub { owner = "okonet"; repo = "lint-staged"; rev = "v${version}"; - hash = "sha256-liStGx9Tjcwv1csgPepzT0bDSew8AlpywT+YT38B/Fk="; + hash = "sha256-kfirpw0wSOvq4C+O9gQpG4caqPCjRV47rAylKWmrfy4="; }; - npmDepsHash = "sha256-5ZVyYzSw5lJZdTVHyR9C4mZa+Nx9yoTmpPRkMsf/b5w="; + npmDepsHash = "sha256-TW90pvkKEs5s2nvjkNyf5xQFmM6UueMSm8Ov03I3Nls="; dontNpmBuild = true; From 41ce478b1052bb5f9107062a2acfc88328c3e9f0 Mon Sep 17 00:00:00 2001 From: David Wronek Date: Fri, 3 Oct 2025 10:58:24 +0200 Subject: [PATCH 39/42] b4: 0.14.2 -> 0.14.3 Signed-off-by: David Wronek --- pkgs/by-name/b4/b4/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/b4/b4/package.nix b/pkgs/by-name/b4/b4/package.nix index 0b951b320dac..107fa54983db 100644 --- a/pkgs/by-name/b4/b4/package.nix +++ b/pkgs/by-name/b4/b4/package.nix @@ -7,12 +7,12 @@ python3Packages.buildPythonApplication rec { pname = "b4"; - version = "0.14.2"; + version = "0.14.3"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-T4NbblrjDv9gBLslwV/Y9Pbs0RBVluhtsYcf730YET0="; + hash = "sha256-MaSSe437tcl+38lWnNo7Zze7/YQwiB6MxIoLCIztYUc="; }; # tests make dns requests and fails From e5bb937b2714510f0beff5d5aa4cbc85e9fcea6b Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Fri, 3 Oct 2025 10:23:47 +0200 Subject: [PATCH 40/42] claude-code: 2.0.1 -> 2.0.5 Changelog: https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md Also updated VSCode extension to 2.0.5. --- .../vscode/extensions/anthropic.claude-code/default.nix | 4 ++-- pkgs/by-name/cl/claude-code/package.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix index 3511736331b1..14004e4e89f2 100644 --- a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix +++ b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix @@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "claude-code"; publisher = "anthropic"; - version = "2.0.0"; - hash = "sha256-vd3ZT8iwmbUCeaHgiDGLzWehOj4j/hMinHiXQytwVz4="; + version = "2.0.5"; + hash = "sha256-3+VrFM1aB26AfF8vkrFJXOfg07EGkwNa+nh1vvy6MFw="; }; meta = { diff --git a/pkgs/by-name/cl/claude-code/package.nix b/pkgs/by-name/cl/claude-code/package.nix index cbd8df60ec7c..bdf99d251ed7 100644 --- a/pkgs/by-name/cl/claude-code/package.nix +++ b/pkgs/by-name/cl/claude-code/package.nix @@ -7,11 +7,11 @@ }: buildNpmPackage (finalAttrs: { pname = "claude-code"; - version = "2.0.1"; + version = "2.0.5"; src = fetchzip { url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${finalAttrs.version}.tgz"; - hash = "sha256-LUbDPFa0lY74MBU4hvmYVntt6hVZy6UUZFN0iB4Eno8="; + hash = "sha256-ZAolpT/NW48NpIoY2jUzbBlcHmyNcw+G1GhZ40qtJoY="; }; npmDepsHash = "sha256-DehkeMZvzn+hvcCDzJfd4p9oYc1GSZm8gu8vKS4Uncw="; From ef9fa0bcd4a481c3752d335377ac948dc43ca9a8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 3 Oct 2025 09:43:17 +0000 Subject: [PATCH 41/42] python3Packages.tree-sitter-javascript: 0.23.1 -> 0.25.0 --- .../python-modules/tree-sitter-javascript/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tree-sitter-javascript/default.nix b/pkgs/development/python-modules/tree-sitter-javascript/default.nix index 07a5d35ef751..cb7d9ca3822d 100644 --- a/pkgs/development/python-modules/tree-sitter-javascript/default.nix +++ b/pkgs/development/python-modules/tree-sitter-javascript/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "tree-sitter-javascript"; - version = "0.23.1"; + version = "0.25.0"; pyproject = true; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-javascript"; tag = "v${version}"; - hash = "sha256-apgWWYD0XOvH5c3BY7kAF7UYtwPJaEvJzC5aWvJ9YQ8="; + hash = "sha256-2Jj/SUG+k8lHlGSuPZvHjJojvQFgDiZHZzH8xLu7suE="; }; build-system = [ From 79d93c43081021963be183f543557fe1ec8494b3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 3 Oct 2025 09:58:09 +0000 Subject: [PATCH 42/42] vscode-extensions.redhat.vscode-yaml: 1.18.0 -> 1.19.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 4e736ce5d0d3..1f2ca1334b55 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -3881,8 +3881,8 @@ let mktplcRef = { publisher = "redhat"; name = "vscode-yaml"; - version = "1.18.0"; - hash = "sha256-UtxDplORUWqmiW6I8n4ZhK7HAQdSDG4dw7M/cbjkmZY="; + version = "1.19.0"; + hash = "sha256-Nc/lkcZh5kp71eygkUCJQT7iNT+9Jg+ud1hgaXdV0Ls="; }; meta = { description = "YAML Language Support by Red Hat, with built-in Kubernetes syntax support";