From 6fd1ffd843bf928805631ff11849b499ad515c3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 8 Dec 2025 01:17:12 +0100 Subject: [PATCH 01/63] knot-resolver-manager_6: run tests --- .../kn/knot-resolver-manager_6/package.nix | 23 ++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/kn/knot-resolver-manager_6/package.nix b/pkgs/by-name/kn/knot-resolver-manager_6/package.nix index 851dec44dfa1..af9b5e558b00 100644 --- a/pkgs/by-name/kn/knot-resolver-manager_6/package.nix +++ b/pkgs/by-name/kn/knot-resolver-manager_6/package.nix @@ -38,9 +38,8 @@ python3Packages.buildPythonPackage { typing-extensions ]; - doCheck = false; # FIXME - checkInputs = with python3Packages; [ - python3Packages.augeas + nativeCheckInputs = with python3Packages; [ + augeas dnspython lief pytestCheckHook @@ -50,6 +49,24 @@ python3Packages.buildPythonPackage { toml ]; + preCheck = '' + mkdir -p /tmp + ''; + + disabledTestPaths = [ + # FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pytest-kresd-portdir/11076' + "tests/pytests/test_conn_mgmt.py" + "tests/pytests/test_edns.py" + "tests/pytests/test_prefix.py" + "tests/pytests/test_tls.py" + ]; + + disabledTests = [ + # FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pytest-kresd-portdir/11076' + "test_proxy_random_close" + "test_proxy_rehandshake_tls12" + ]; + meta = knot-resolver_6.meta // { mainProgram = "knot-resolver"; }; From 8d532083cb8bfdd377fe84f604605b04fd401e53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 8 Dec 2025 01:17:18 +0100 Subject: [PATCH 02/63] knot-resolver_6: clean up --- pkgs/by-name/kn/knot-resolver_6/package.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/kn/knot-resolver_6/package.nix b/pkgs/by-name/kn/knot-resolver_6/package.nix index 21fa65aab9fa..66d2136249ea 100644 --- a/pkgs/by-name/kn/knot-resolver_6/package.nix +++ b/pkgs/by-name/kn/knot-resolver_6/package.nix @@ -97,12 +97,10 @@ let ++ [ jemalloc nghttp2 - ] - ++ [ + # dnstap support fstrm protobufc - ] # dnstap support - ; + ]; mesonFlags = [ "-Dkeyfile_default=${dns-root-data}/root.ds" From dd6ed2194e4294308d5a24bfc369101d32fae5ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 7 Dec 2025 18:47:33 +0100 Subject: [PATCH 03/63] knot-resolver_6,/knot-resolver-manager_6: fix module assertion eval and package eval when using extraFeatures --- .../kn/knot-resolver-manager_6/package.nix | 16 ++++++++++------ pkgs/by-name/kn/knot-resolver_6/package.nix | 9 ++++++++- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/kn/knot-resolver-manager_6/package.nix b/pkgs/by-name/kn/knot-resolver-manager_6/package.nix index af9b5e558b00..d9242a886a32 100644 --- a/pkgs/by-name/kn/knot-resolver-manager_6/package.nix +++ b/pkgs/by-name/kn/knot-resolver-manager_6/package.nix @@ -1,12 +1,15 @@ { knot-resolver_6, - writeText, python3Packages, + extraFeatures ? false, }: - +let + knot-resolver = knot-resolver_6.override { inherit extraFeatures; }; +in python3Packages.buildPythonPackage { pname = "knot-resolver-manager_6"; - inherit (knot-resolver_6) version src; + inherit (knot-resolver) version; + inherit (knot-resolver.unwrapped) src; pyproject = true; patches = [ @@ -19,8 +22,9 @@ python3Packages.buildPythonPackage { # Propagate meson config from the C part to the python part. # But the install-time etc differs from a sensible run-time etc. postPatch = '' - substitute '${knot-resolver_6.config_py}'/knot_resolver/constants.py ./python/knot_resolver/constants.py \ - --replace-fail '${knot-resolver_6.out}/etc' '/etc' + substitute '${knot-resolver.unwrapped.config_py}'/knot_resolver/constants.py ./python/knot_resolver/constants.py \ + --replace-fail '${knot-resolver.unwrapped.out}/etc' '/etc' \ + --replace-fail '${knot-resolver.unwrapped.out}/sbin' '${knot-resolver}/bin' ''; build-system = with python3Packages; [ @@ -67,7 +71,7 @@ python3Packages.buildPythonPackage { "test_proxy_rehandshake_tls12" ]; - meta = knot-resolver_6.meta // { + meta = knot-resolver.meta // { mainProgram = "knot-resolver"; }; } diff --git a/pkgs/by-name/kn/knot-resolver_6/package.nix b/pkgs/by-name/kn/knot-resolver_6/package.nix index 66d2136249ea..87b735049c04 100644 --- a/pkgs/by-name/kn/knot-resolver_6/package.nix +++ b/pkgs/by-name/kn/knot-resolver_6/package.nix @@ -136,6 +136,10 @@ let meson test --print-errorlogs --no-suite snowflake ''; + passthru = { + unwrapped = finalAttrs.finalPackage; + }; + meta = with lib; { description = "Caching validating DNS resolver, from .cz domain registry"; homepage = "https://knot-resolver.cz"; @@ -162,7 +166,10 @@ let ]; preferLocalBuild = true; allowSubstitutes = false; - inherit (unwrapped) meta; + inherit (unwrapped) version meta; + passthru = { + inherit unwrapped; + }; } ( '' From 4619234604ecb0b870cfd903fb8343d736dee3d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 8 Dec 2025 02:31:44 +0100 Subject: [PATCH 04/63] nixos/knot-resolver: default package to the passed through and overwritten package of the manager --- nixos/modules/services/networking/knot-resolver.nix | 2 +- pkgs/by-name/kn/knot-resolver-manager_6/package.nix | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/knot-resolver.nix b/nixos/modules/services/networking/knot-resolver.nix index 9ae940182a30..acf3a74cd937 100644 --- a/nixos/modules/services/networking/knot-resolver.nix +++ b/nixos/modules/services/networking/knot-resolver.nix @@ -36,7 +36,7 @@ in If you want to use knot-resolver 5, please use services.kresd. ''; }; - package = lib.mkPackageOption pkgs "knot-resolver_6" { + package = lib.mkPackageOption pkgs "knot-resolver-manager_6.knot-resolver" { example = "knot-resolver_6.override { extraFeatures = true; }"; }; managerPackage = lib.mkPackageOption pkgs "knot-resolver-manager_6" { }; diff --git a/pkgs/by-name/kn/knot-resolver-manager_6/package.nix b/pkgs/by-name/kn/knot-resolver-manager_6/package.nix index d9242a886a32..0f10f208e7be 100644 --- a/pkgs/by-name/kn/knot-resolver-manager_6/package.nix +++ b/pkgs/by-name/kn/knot-resolver-manager_6/package.nix @@ -71,6 +71,10 @@ python3Packages.buildPythonPackage { "test_proxy_rehandshake_tls12" ]; + passthru = { + inherit knot-resolver; + }; + meta = knot-resolver.meta // { mainProgram = "knot-resolver"; }; From 5cb4763dfc6b961bf195a63a9c8dd3715c3b6f58 Mon Sep 17 00:00:00 2001 From: Steve Purcell Date: Fri, 5 Dec 2025 16:14:53 +0000 Subject: [PATCH 05/63] ocamlPackages.dream-html: 3.11.1 -> 3.11.2 Fixes compatibility with ppxlib > 0.36 --- .../ocaml-modules/dream-html/default.nix | 10 +--------- pkgs/development/ocaml-modules/dream-html/pure.nix | 14 +++++++++----- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/pkgs/development/ocaml-modules/dream-html/default.nix b/pkgs/development/ocaml-modules/dream-html/default.nix index dc115db96c31..d46990d44847 100644 --- a/pkgs/development/ocaml-modules/dream-html/default.nix +++ b/pkgs/development/ocaml-modules/dream-html/default.nix @@ -1,5 +1,4 @@ { - lib, buildDunePackage, dream, pure-html, @@ -8,7 +7,7 @@ buildDunePackage { pname = "dream-html"; - inherit (pure-html) src version; + inherit (pure-html) src version meta; buildInputs = [ ppxlib @@ -18,11 +17,4 @@ buildDunePackage { pure-html dream ]; - - meta = { - description = "Write HTML directly in your OCaml source files with editor support"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.naora ]; - broken = lib.versionAtLeast ppxlib.version "0.36"; - }; } diff --git a/pkgs/development/ocaml-modules/dream-html/pure.nix b/pkgs/development/ocaml-modules/dream-html/pure.nix index fd0f4573d7af..60fc809e320d 100644 --- a/pkgs/development/ocaml-modules/dream-html/pure.nix +++ b/pkgs/development/ocaml-modules/dream-html/pure.nix @@ -5,22 +5,26 @@ uri, }: -buildDunePackage rec { +buildDunePackage (finalAttrs: { pname = "pure-html"; - version = "3.11.1"; + version = "3.11.2"; src = fetchFromGitHub { owner = "yawaramin"; repo = "dream-html"; - tag = "v${version}"; - hash = "sha256-L/q3nxUONPdZtzmfCfP8nnNCwQNSpeYI0hqowioGYNg="; + tag = "v${finalAttrs.version}"; + hash = "sha256-/I233A86T+QEb2qbSHucgzRzYEjS08eKezSXOwz2ml0="; }; + doCheck = true; + propagatedBuildInputs = [ uri ]; meta = { description = "Write HTML directly in your OCaml source files with editor support"; + homepage = "https://github.com/yawaramin/dream-html"; + changelog = "https://raw.githubusercontent.com/yawaramin/dream-html/refs/tags/v${finalAttrs.version}/CHANGES.md"; license = lib.licenses.gpl3; maintainers = [ lib.maintainers.naora ]; }; -} +}) From 6c2e7b74a753c2982ddd5bc893b160e069af7c61 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 7 Dec 2025 22:57:34 +0800 Subject: [PATCH 06/63] nixos/cinnamon: enable bolt https://github.com/linuxmint/cinnamon/commit/a165975c93e1f8b46624f547c8cdbd1b6f86f341 --- nixos/modules/services/x11/desktop-managers/cinnamon.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/x11/desktop-managers/cinnamon.nix b/nixos/modules/services/x11/desktop-managers/cinnamon.nix index 9368300ab93a..d70dbb92983e 100644 --- a/nixos/modules/services/x11/desktop-managers/cinnamon.nix +++ b/nixos/modules/services/x11/desktop-managers/cinnamon.nix @@ -109,6 +109,7 @@ in # Default services services.blueman.enable = mkDefault (notExcluded pkgs.blueman); + services.hardware.bolt.enable = mkDefault (notExcluded pkgs.bolt); hardware.bluetooth.enable = mkDefault true; security.polkit.enable = true; services.accounts-daemon.enable = true; From da6f786af727a694b270b5acceacc45875302fa5 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 7 Dec 2025 23:02:32 +0800 Subject: [PATCH 07/63] nixos/cinnamon: add inxi https://github.com/linuxmint/cinnamon/blob/6.4.13/files/usr/share/cinnamon/cinnamon-settings/modules/cs_info.py#L210 --- nixos/modules/services/x11/desktop-managers/cinnamon.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/x11/desktop-managers/cinnamon.nix b/nixos/modules/services/x11/desktop-managers/cinnamon.nix index d70dbb92983e..c29aa0f68f86 100644 --- a/nixos/modules/services/x11/desktop-managers/cinnamon.nix +++ b/nixos/modules/services/x11/desktop-managers/cinnamon.nix @@ -174,6 +174,7 @@ in cinnamon-translations # utils needed by some scripts + inxi killall # session requirements From 3e5f2120ae93ed1ddbcfb9a10f44c72f9541062a Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Tue, 25 Nov 2025 23:19:22 +0800 Subject: [PATCH 08/63] nixos/tests/cinnamon: adjust to new virtual keyboard https://github.com/pulls?q=is%3Aopen+is%3Apr+org%3Alinuxmint+head%3Amodernize-kb-layouts --- nixos/tests/cinnamon.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/cinnamon.nix b/nixos/tests/cinnamon.nix index 1f8fb683efc7..4874673ebbec 100644 --- a/nixos/tests/cinnamon.nix +++ b/nixos/tests/cinnamon.nix @@ -100,7 +100,7 @@ with subtest("Open virtual keyboard"): machine.succeed("${su "dbus-send --print-reply --dest=org.Cinnamon /org/Cinnamon org.Cinnamon.ToggleKeyboard"}") - machine.wait_for_text('(Ctrl|Alt)') + machine.wait_for_text('(Esc|123)') machine.sleep(2) machine.screenshot("cinnamon_virtual_keyboard") From 5537f5147f158fc8d7142fd78979d38679784499 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 30 Nov 2025 11:48:16 +0800 Subject: [PATCH 09/63] nemo-emblems: 6.4.0 -> 6.6.0 https://github.com/linuxmint/nemo-extensions/compare/6.4.0...6.6.0 --- pkgs/by-name/ne/nemo-emblems/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ne/nemo-emblems/package.nix b/pkgs/by-name/ne/nemo-emblems/package.nix index ece3a9f62f1b..4465f9645c80 100644 --- a/pkgs/by-name/ne/nemo-emblems/package.nix +++ b/pkgs/by-name/ne/nemo-emblems/package.nix @@ -7,7 +7,7 @@ python3.pkgs.buildPythonApplication rec { pname = "nemo-emblems"; - version = "6.4.0"; + version = "6.6.0"; pyproject = true; # nixpkgs-update: no auto update @@ -15,7 +15,7 @@ python3.pkgs.buildPythonApplication rec { owner = "linuxmint"; repo = "nemo-extensions"; rev = version; - hash = "sha256-39hWA4SNuEeaPA6D5mWMHjJDs4hYK7/ZdPkTyskvm5Y="; + hash = "sha256-tXeMkaCYnWzg+6ng8Tyg4Ms1aUeE3xiEkQ3tKEX6Vv8="; }; sourceRoot = "${src.name}/nemo-emblems"; From c3b03ee8eb0bb470f9dfd7f486158983564a9800 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 30 Nov 2025 11:48:42 +0800 Subject: [PATCH 10/63] nemo-fileroller: 6.4.0 -> 6.6.0 https://github.com/linuxmint/nemo-extensions/compare/6.4.0...6.6.0 --- pkgs/by-name/ne/nemo-fileroller/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ne/nemo-fileroller/package.nix b/pkgs/by-name/ne/nemo-fileroller/package.nix index 9f5115f7922c..651b3eadc1f4 100644 --- a/pkgs/by-name/ne/nemo-fileroller/package.nix +++ b/pkgs/by-name/ne/nemo-fileroller/package.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation rec { pname = "nemo-fileroller"; - version = "6.4.0"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "nemo-extensions"; rev = version; - hash = "sha256-39hWA4SNuEeaPA6D5mWMHjJDs4hYK7/ZdPkTyskvm5Y="; + hash = "sha256-tXeMkaCYnWzg+6ng8Tyg4Ms1aUeE3xiEkQ3tKEX6Vv8="; }; sourceRoot = "${src.name}/nemo-fileroller"; From f1257a15dccbd0075313fbd2acecbcd06c6d4461 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 30 Nov 2025 11:49:02 +0800 Subject: [PATCH 11/63] nemo-preview: 6.4.0 -> 6.6.0 https://github.com/linuxmint/nemo-extensions/compare/6.4.0...6.6.0 --- pkgs/by-name/ne/nemo-preview/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ne/nemo-preview/package.nix b/pkgs/by-name/ne/nemo-preview/package.nix index 84223dcf99f9..1097e7deb513 100644 --- a/pkgs/by-name/ne/nemo-preview/package.nix +++ b/pkgs/by-name/ne/nemo-preview/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "nemo-preview"; - version = "6.4.0"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "nemo-extensions"; tag = finalAttrs.version; - hash = "sha256-39hWA4SNuEeaPA6D5mWMHjJDs4hYK7/ZdPkTyskvm5Y="; + hash = "sha256-tXeMkaCYnWzg+6ng8Tyg4Ms1aUeE3xiEkQ3tKEX6Vv8="; }; sourceRoot = "${finalAttrs.src.name}/nemo-preview"; From b8b1688286eba8bf099cf101d626551ed2544629 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 30 Nov 2025 11:49:21 +0800 Subject: [PATCH 12/63] nemo-python: 6.4.0 -> 6.6.0 https://github.com/linuxmint/nemo-extensions/compare/6.4.0...6.6.0 --- pkgs/by-name/ne/nemo-python/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ne/nemo-python/package.nix b/pkgs/by-name/ne/nemo-python/package.nix index 2caf1456f9b1..58e257b2ca8d 100644 --- a/pkgs/by-name/ne/nemo-python/package.nix +++ b/pkgs/by-name/ne/nemo-python/package.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "nemo-python"; - version = "6.4.0"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "nemo-extensions"; rev = version; - hash = "sha256-39hWA4SNuEeaPA6D5mWMHjJDs4hYK7/ZdPkTyskvm5Y="; + hash = "sha256-tXeMkaCYnWzg+6ng8Tyg4Ms1aUeE3xiEkQ3tKEX6Vv8="; }; sourceRoot = "${src.name}/nemo-python"; From 9612b38f9fbf027ccd8d306d1edb5c0bf403ca0b Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 30 Nov 2025 11:49:38 +0800 Subject: [PATCH 13/63] nemo-seahorse: 6.4.0 -> 6.6.0 https://github.com/linuxmint/nemo-extensions/compare/6.4.0...6.6.0 --- pkgs/by-name/ne/nemo-seahorse/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ne/nemo-seahorse/package.nix b/pkgs/by-name/ne/nemo-seahorse/package.nix index ff56deb0ad65..6942814cd111 100644 --- a/pkgs/by-name/ne/nemo-seahorse/package.nix +++ b/pkgs/by-name/ne/nemo-seahorse/package.nix @@ -18,13 +18,13 @@ stdenv.mkDerivation rec { pname = "nemo-seahorse"; - version = "6.4.0"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "nemo-extensions"; tag = version; - hash = "sha256-39hWA4SNuEeaPA6D5mWMHjJDs4hYK7/ZdPkTyskvm5Y="; + hash = "sha256-tXeMkaCYnWzg+6ng8Tyg4Ms1aUeE3xiEkQ3tKEX6Vv8="; }; sourceRoot = "${src.name}/nemo-seahorse"; From a5debbf161a7e3c478f6fbbd3c85792396486407 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 6 Dec 2025 17:51:58 +0800 Subject: [PATCH 14/63] cinnamon: 6.4.13 -> 6.6.0 https://github.com/linuxmint/cinnamon/compare/6.4.13...6.6.0 --- pkgs/by-name/ci/cinnamon/libdir.patch | 2 +- pkgs/by-name/ci/cinnamon/package.nix | 33 ++++++--------------------- 2 files changed, 8 insertions(+), 27 deletions(-) diff --git a/pkgs/by-name/ci/cinnamon/libdir.patch b/pkgs/by-name/ci/cinnamon/libdir.patch index 7783d0b3ad12..e56f6f464bb5 100644 --- a/pkgs/by-name/ci/cinnamon/libdir.patch +++ b/pkgs/by-name/ci/cinnamon/libdir.patch @@ -17,9 +17,9 @@ index 3c1e9a4f..a77d9b3c 100644 schemadir = join_paths(datadir, 'glib-2.0', 'schemas') -pkglibdir = join_paths(libdir, meson.project_name().to_lower()) +pkglibdir = libdir - servicedir = join_paths(datadir, 'dbus-1', 'services') pkgdatadir = join_paths(datadir, meson.project_name().to_lower()) po_dir = join_paths(meson.source_root(), 'po') + -- 2.30.0 diff --git a/pkgs/by-name/ci/cinnamon/package.nix b/pkgs/by-name/ci/cinnamon/package.nix index f41853691399..c0cc7593d70f 100644 --- a/pkgs/by-name/ci/cinnamon/package.nix +++ b/pkgs/by-name/ci/cinnamon/package.nix @@ -10,7 +10,6 @@ cjs, evolution-data-server, fetchFromGitHub, - fetchpatch, gcr, gdk-pixbuf, gettext, @@ -19,7 +18,7 @@ gobject-introspection, gsound, gtk3, - intltool, + ibus, json-glib, libsecret, libstartup_notification, @@ -35,7 +34,6 @@ wrapGAppsHook3, libxml2, gtk-doc, - caribou, python3, keybinder3, cairo, @@ -46,6 +44,7 @@ accountsservice, gnome-online-accounts, glib-networking, + graphene, pciutils, timezonemap, libnma, @@ -58,7 +57,6 @@ let pythonEnv = python3.withPackages ( pp: with pp; [ - dbus-python setproctitle pygobject3 pycairo @@ -76,29 +74,18 @@ let in stdenv.mkDerivation rec { pname = "cinnamon"; - version = "6.4.13"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon"; tag = version; - hash = "sha256-XGG5Qf6Kx1gvZITuuZWn1ggY4FNW/aEuBLbpWyxE2V8="; + hash = "sha256-DiAc1Ng03xzNYYpf79g9p338syPScKftmviNw6Y5i5o="; }; patches = [ ./use-sane-install-dir.patch ./libdir.patch - - # js: Use DesktopAppInfo form GioUnix, not Gio - # https://github.com/linuxmint/cinnamon/pull/13091 - (fetchpatch { - url = "https://github.com/linuxmint/cinnamon/commit/fa3aef20533af4499fb1161011e62e048bbdc396.patch"; - hash = "sha256-qhgBniaUE/8q9BQ+EXcY7BF6eMJg+wC7EYgktwAMbwM="; - }) - (fetchpatch { - url = "https://github.com/linuxmint/cinnamon/commit/330b9ff19f33ec1e94e36048ca46011404f796b4.patch"; - hash = "sha256-YEQG6C4tx2T3wMfCLZXPFynAzEeIE1eVoadWVENZDFc="; - }) ]; buildInputs = [ @@ -113,8 +100,10 @@ stdenv.mkDerivation rec { gcr gdk-pixbuf glib + graphene gsound gtk3 + ibus json-glib libsecret libstartup_notification @@ -131,7 +120,6 @@ stdenv.mkDerivation rec { # bindings cairo - caribou keybinder3 upower xapp @@ -151,7 +139,6 @@ stdenv.mkDerivation rec { meson ninja wrapGAppsHook3 - intltool gtk-doc perl python3.pkgs.libsass # for pysassc @@ -177,7 +164,6 @@ stdenv.mkDerivation rec { --replace-fail 'subprocess.run(["/usr/bin/' 'subprocess.run(["' \ --replace-fail "msgfmt" "${gettext}/bin/msgfmt" substituteInPlace ./modules/cs_info.py --replace-fail "lspci" "${pciutils}/bin/lspci" - substituteInPlace ./modules/cs_keyboard.py --replace-fail "/usr/bin/cinnamon-dbus-command" "$out/bin/cinnamon-dbus-command" substituteInPlace ./modules/cs_themes.py --replace-fail "$out/share/cinnamon/styles.d" "/run/current-system/sw/share/cinnamon/styles.d" substituteInPlace ./modules/cs_user.py --replace-fail "/usr/bin/passwd" "/run/wrappers/bin/passwd" popd @@ -189,7 +175,7 @@ stdenv.mkDerivation rec { substituteInPlace ./files/usr/bin/cinnamon-session-{cinnamon,cinnamon2d} \ --replace-fail "exec cinnamon-session" "exec ${cinnamon-session}/bin/cinnamon-session" - patchShebangs src/data-to-c.pl data/theme/parse-sass.sh + patchShebangs src/data-to-c.pl ''; postInstall = '' @@ -198,11 +184,6 @@ stdenv.mkDerivation rec { ''; preFixup = '' - # https://github.com/NixOS/nixpkgs/issues/101881 - gappsWrapperArgs+=( - --prefix XDG_DATA_DIRS : "${caribou}/share" - ) - buildPythonPath "$out ${python3.pkgs.python-xapp}" # https://github.com/NixOS/nixpkgs/issues/200397 From 6dca0d1ad2eb3f892661b128234a1cd3b851ea9e Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 6 Dec 2025 17:51:59 +0800 Subject: [PATCH 15/63] cinnamon-control-center: 6.4.2 -> 6.6.0 https://github.com/linuxmint/cinnamon-control-center/compare/6.4.2...6.6.0 --- .../ci/cinnamon-control-center/package.nix | 21 +++++++------------ 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/pkgs/by-name/ci/cinnamon-control-center/package.nix b/pkgs/by-name/ci/cinnamon-control-center/package.nix index d3b3fd3a28a6..c5ffbc51c84e 100644 --- a/pkgs/by-name/ci/cinnamon-control-center/package.nix +++ b/pkgs/by-name/ci/cinnamon-control-center/package.nix @@ -12,19 +12,15 @@ libxml2, colord, polkit, - libxkbfile, cinnamon-menus, - libgnomekbd, - libxklavier, networkmanager, libgudev, libwacom, wrapGAppsHook3, - glibc, libnma, + libXi, modemmanager, - xorg, - gdk-pixbuf, + xorgproto, meson, ninja, cinnamon-translations, @@ -34,13 +30,13 @@ stdenv.mkDerivation rec { pname = "cinnamon-control-center"; - version = "6.4.2"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon-control-center"; tag = version; - hash = "sha256-nw70sbiz3+dp40WP957hOVo/mQOg2MJknZNN5Kw/Q/0="; + hash = "sha256-TjTwtTFbiC4A4qe9TIyZJtGrSymujhEgM8SpZQ92RZA="; }; buildInputs = [ @@ -50,19 +46,15 @@ stdenv.mkDerivation rec { cinnamon-desktop libnotify cinnamon-menus - libxml2 polkit - libgnomekbd - libxklavier colord libgudev libwacom networkmanager libnma + libXi modemmanager - xorg.libXxf86misc - xorg.libxkbfile - gdk-pixbuf + xorgproto upower ]; @@ -76,6 +68,7 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = [ + libxml2 # xmllint pkg-config meson ninja From 4556c381f364d2c9df6dab4e4fbe9f509a464a15 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 6 Dec 2025 17:52:00 +0800 Subject: [PATCH 16/63] cinnamon-desktop: 6.4.2 -> 6.6.0 https://github.com/linuxmint/cinnamon-desktop/compare/6.4.2...6.6.0 --- pkgs/by-name/ci/cinnamon-desktop/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ci/cinnamon-desktop/package.nix b/pkgs/by-name/ci/cinnamon-desktop/package.nix index 82d33765f183..f2e929c69353 100644 --- a/pkgs/by-name/ci/cinnamon-desktop/package.nix +++ b/pkgs/by-name/ci/cinnamon-desktop/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation rec { pname = "cinnamon-desktop"; - version = "6.4.2"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon-desktop"; tag = version; - hash = "sha256-kNxVdPtCQtz4TSyCc6uKHmAGWm2nlWnLwC3Cm0E42Jc="; + hash = "sha256-9qgt+E5qbzq+x9fJKkoSBFgA96HBDLysQvg6b04WbMU="; }; outputs = [ From cacfe400e2e907434fdb6bca93303598f4aa69ad Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 6 Dec 2025 17:52:01 +0800 Subject: [PATCH 17/63] cinnamon-menus: 6.4.0 -> 6.6.0 https://github.com/linuxmint/cinnamon-menus/compare/6.4.0...6.6.0 --- pkgs/by-name/ci/cinnamon-menus/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ci/cinnamon-menus/package.nix b/pkgs/by-name/ci/cinnamon-menus/package.nix index 2a16b445dbbc..8a2628a83d00 100644 --- a/pkgs/by-name/ci/cinnamon-menus/package.nix +++ b/pkgs/by-name/ci/cinnamon-menus/package.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation rec { pname = "cinnamon-menus"; - version = "6.4.0"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon-menus"; tag = version; - hash = "sha256-ug1RSP2TBrypi0aGhF05k39koY3rGgJi0LuWyuuICd0="; + hash = "sha256-vjgWPFNmRkJWynimvBuxCxLK5C7tQxqJ5Y4dkZXSDSA="; }; buildInputs = [ From 8167fadf8c11cad2d86ec6d935df72aa64001c3e Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 6 Dec 2025 17:52:02 +0800 Subject: [PATCH 18/63] cinnamon-screensaver: 6.4.1 -> 6.6.0 https://github.com/linuxmint/cinnamon-screensaver/compare/6.4.1...6.6.0 --- pkgs/by-name/ci/cinnamon-screensaver/package.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ci/cinnamon-screensaver/package.nix b/pkgs/by-name/ci/cinnamon-screensaver/package.nix index 1c60e62db173..04886d15d2db 100644 --- a/pkgs/by-name/ci/cinnamon-screensaver/package.nix +++ b/pkgs/by-name/ci/cinnamon-screensaver/package.nix @@ -21,7 +21,6 @@ python3, pam, cairo, - xapp, xdotool, xorg, iso-flags-png-320x240, @@ -29,13 +28,13 @@ stdenv.mkDerivation rec { pname = "cinnamon-screensaver"; - version = "6.4.1"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon-screensaver"; tag = version; - hash = "sha256-CK4WP5IafNII81e8HxUNN3Vp36Ln78Xvv5lIMvL+nbk="; + hash = "sha256-Jo9GRsiPvqGZ2ITaewV5H4VMc5EotTTXIaqzXwDA+Z4="; }; patches = [ @@ -75,7 +74,6 @@ stdenv.mkDerivation rec { pycairo ] )) - xapp xdotool pam cairo From cd35952fcd9abdf038808865cd8b7da08f0e6257 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 6 Dec 2025 17:52:03 +0800 Subject: [PATCH 19/63] cinnamon-session: 6.4.2 -> 6.6.0 https://github.com/linuxmint/cinnamon-session/compare/6.4.2...6.6.0 --- pkgs/by-name/ci/cinnamon-session/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ci/cinnamon-session/package.nix b/pkgs/by-name/ci/cinnamon-session/package.nix index 35268a0d0033..f71ebdc94011 100644 --- a/pkgs/by-name/ci/cinnamon-session/package.nix +++ b/pkgs/by-name/ci/cinnamon-session/package.nix @@ -33,13 +33,13 @@ let in stdenv.mkDerivation rec { pname = "cinnamon-session"; - version = "6.4.2"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon-session"; tag = version; - hash = "sha256-zv1X1MLZBg+Bayd4hjsmrdXkFTRkH4kz7PJe6mFTBqc="; + hash = "sha256-16bBehc8NuPd9vr/J7Y5MoVsqOBQWzh63pzQZ96O0vs="; }; buildInputs = [ From 22e57ab3997ab7269c3b6f99485fe17dcbf2e291 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 6 Dec 2025 17:52:04 +0800 Subject: [PATCH 20/63] cinnamon-settings-daemon: 6.4.3 -> 6.6.0 https://github.com/linuxmint/cinnamon-settings-daemon/compare/6.4.3...6.6.0 --- pkgs/by-name/ci/cinnamon-settings-daemon/package.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix b/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix index ac136d982534..bf945c37a808 100644 --- a/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix +++ b/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix @@ -8,16 +8,13 @@ gtk3, lcms2, libcanberra-gtk3, - libgnomekbd, libnotify, - libxklavier, wrapGAppsHook3, pkg-config, lib, stdenv, systemd, upower, - dconf, cups, polkit, librsvg, @@ -33,13 +30,13 @@ stdenv.mkDerivation rec { pname = "cinnamon-settings-daemon"; - version = "6.4.3"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon-settings-daemon"; tag = version; - hash = "sha256-L7+OgymYoYBdprw66RW8tiGA7XGWjTBpDpXhli8Fjoo="; + hash = "sha256-Ho7L4BqLJ0Vz9+ZijZ8ZhQr1NJmGVf8JWtUpplx1JF0="; }; patches = [ @@ -54,12 +51,9 @@ stdenv.mkDerivation rec { gsettings-desktop-schemas lcms2 libcanberra-gtk3 - libgnomekbd libnotify - libxklavier systemd upower - dconf cups polkit librsvg @@ -67,7 +61,6 @@ stdenv.mkDerivation rec { xorg.libXext xorg.libX11 xorg.libXi - xorg.libXfixes fontconfig nss libgudev From 8aa0d36b4945ebea7d5ade2e21cb2310355e91d5 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 6 Dec 2025 17:52:04 +0800 Subject: [PATCH 21/63] cinnamon-translations: 6.4.2 -> 6.6.0 https://github.com/linuxmint/cinnamon-translations/compare/6.4.2...6.6.0 --- pkgs/by-name/ci/cinnamon-translations/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ci/cinnamon-translations/package.nix b/pkgs/by-name/ci/cinnamon-translations/package.nix index 3739ebd18421..92ce3c93750d 100644 --- a/pkgs/by-name/ci/cinnamon-translations/package.nix +++ b/pkgs/by-name/ci/cinnamon-translations/package.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "cinnamon-translations"; - version = "6.4.2"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon-translations"; tag = version; - hash = "sha256-By09Y4iHZz3XR7tRd5MyXK5BKOr01yJzTTLQHEZ00q0="; + hash = "sha256-+aqMXice5INNkqLmPc4hawlrc2jRnsGimDPZf28dUSE="; }; nativeBuildInputs = [ From b24de10ada908a350e31348c41c722f451ac9e0f Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 6 Dec 2025 17:52:10 +0800 Subject: [PATCH 22/63] muffin: 6.4.1 -> 6.6.0 https://github.com/linuxmint/muffin/compare/6.4.1...6.6.0 --- pkgs/by-name/mu/muffin/package.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/mu/muffin/package.nix b/pkgs/by-name/mu/muffin/package.nix index 0844df43a89b..3606cec06723 100644 --- a/pkgs/by-name/mu/muffin/package.nix +++ b/pkgs/by-name/mu/muffin/package.nix @@ -2,7 +2,6 @@ stdenv, lib, fetchFromGitHub, - fetchpatch, replaceVars, cairo, cinnamon-desktop, @@ -44,7 +43,7 @@ stdenv.mkDerivation rec { pname = "muffin"; - version = "6.4.1"; + version = "6.6.0"; outputs = [ "out" @@ -56,20 +55,13 @@ stdenv.mkDerivation rec { owner = "linuxmint"; repo = "muffin"; rev = version; - hash = "sha256-cGC1yGft3uEqefm2DvZrMaROoZKYd6LNY0IJ+58f6vs="; + hash = "sha256-yGbnqIKw+Ouk1onr2H+KckO/YQob1N1beLmfqQhOheU="; }; patches = [ (replaceVars ./fix-paths.patch { inherit zenity; }) - - # Fix Qt apps crashing on wayland - # https://github.com/linuxmint/muffin/pull/739 - (fetchpatch { - url = "https://github.com/linuxmint/muffin/commit/760e2a3046e13610c4fda1291a9a28e589d2bd93.patch"; - hash = "sha256-D0u8UxW5USzMW9KlP3Y4XCWxrQ1ySufDv+eCbrAP71c="; - }) ]; nativeBuildInputs = [ @@ -119,7 +111,6 @@ stdenv.mkDerivation rec { mesonFlags = [ # Based on Mint's debian/rules. - "-Degl_device=true" "-Dwayland_eglstream=true" "-Dxwayland_path=${lib.getExe xwayland}" ]; From cedf5c5287947121eae0b22feb803849ad5478ba Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 6 Dec 2025 17:52:11 +0800 Subject: [PATCH 23/63] nemo: 6.4.5 -> 6.6.0 https://github.com/linuxmint/nemo/compare/6.4.5...6.6.0 --- pkgs/by-name/ne/nemo/package.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ne/nemo/package.nix b/pkgs/by-name/ne/nemo/package.nix index a52469d63d11..b7d85150602f 100644 --- a/pkgs/by-name/ne/nemo/package.nix +++ b/pkgs/by-name/ne/nemo/package.nix @@ -13,6 +13,7 @@ gvfs, cinnamon-desktop, xapp, + xapp-symbolic-icons, libexif, json-glib, exempi, @@ -35,13 +36,13 @@ let in stdenv.mkDerivation rec { pname = "nemo"; - version = "6.4.5"; + version = "6.6.0"; src = fetchFromGitHub { owner = "linuxmint"; repo = "nemo"; rev = version; - hash = "sha256-9JfCBC5YjfQadF7KzPgZ1yPkiSjmuEO1tfMU2BmJES8="; + hash = "sha256-4YbWkS4J0iDkp+wnwyJg5TD/fhHsbutyh7q+yFLV9Mk="; }; patches = [ @@ -93,9 +94,14 @@ stdenv.mkDerivation rec { ''; preFixup = '' - # Used for some non-fd.o icons (e.g. xapp-text-case-symbolic) gappsWrapperArgs+=( - --prefix XDG_DATA_DIRS : "${xapp}/share" + --prefix XDG_DATA_DIRS : ${ + lib.makeSearchPath "share" [ + # For non-fd.o icons. + xapp + xapp-symbolic-icons + ] + } ) ''; From a885775f4a64b0f4fe75a2ebce922ffa6c6d69de Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 10 Dec 2025 16:49:18 +0000 Subject: [PATCH 24/63] thunderbird-latest-bin-unwrapped: 145.0 -> 146.0 --- .../thunderbird-bin/release_sources.nix | 530 +++++++++--------- 1 file changed, 265 insertions(+), 265 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix index 1299e870a57a..5cda07b97bfc 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix @@ -1,797 +1,797 @@ { - version = "145.0"; + version = "146.0"; sources = [ { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/af/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/af/thunderbird-146.0.tar.xz"; locale = "af"; arch = "linux-x86_64"; - sha256 = "36f7c1147e893632af96f5dbaa582ffb1465a89447cb315716210a4e8d533441"; + sha256 = "0c3dd1da5421b5f10dd89931ba7047e4eef58741d74a257494a3cd53e22ae4bc"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/ar/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/ar/thunderbird-146.0.tar.xz"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "5d5afaf3615e393e8d652d592d4133d5bc883f240512d5c3f15b893790107545"; + sha256 = "1cee5a171b5f7bf0e1adafd3ca7707691f51e00c34c7e18f32668eec8a4cefa0"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/ast/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/ast/thunderbird-146.0.tar.xz"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "6d76477f9fbfdb48c3d85bce51c1c19d797736eed3f2d58d54ed865ed3f1bc21"; + sha256 = "f5427c36fa432f033159eb367b16f99ba7850533974dd24c2ec1c57dcd1b1cd4"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/be/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/be/thunderbird-146.0.tar.xz"; locale = "be"; arch = "linux-x86_64"; - sha256 = "076d9f99d32fd1967f1c021ffdabaa11950fba0c184ed0721b3d08c1e25982d7"; + sha256 = "85c3769b761a399a22861e641e33a6b45bb347bb1ebb7caca7f2cefa257e9950"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/bg/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/bg/thunderbird-146.0.tar.xz"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "6a9378cd6d3e597ba0a6000d19c93e8b463a912c4f2a34205633fedb0a41a64b"; + sha256 = "841e11d745f1586adf367d2127552c5ec7e83e287fbd7a6f8fdb334e92c772fe"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/br/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/br/thunderbird-146.0.tar.xz"; locale = "br"; arch = "linux-x86_64"; - sha256 = "c822a750bbf37d5686d5805049126b1c4c8aedb52148bc25ff6ee2e40792e3e2"; + sha256 = "7d89ff5e32aaa88d6194ba6c1a5279874fd32a7fc23b1dd7b5c5f6883a277c59"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/ca/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/ca/thunderbird-146.0.tar.xz"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "a048dbc0a08f0623a74903030bc1d07dcfce23d98a14d639bd2ff2e6062cc87a"; + sha256 = "a7828e900d598225333525a8a9c81b79e48f2d4f5db22bb5d92fe082d9aa01d7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/cak/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/cak/thunderbird-146.0.tar.xz"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "b66f696fd7db515b4152a7fdd31e894aa10de242f45120213e8223806917a2d4"; + sha256 = "ee86f9f9270ec5f30c6fd9e150218001dea4b45633128f4b8b075be4480b181f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/cs/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/cs/thunderbird-146.0.tar.xz"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "9a92efa22bacc611d4af65a590f4f24bb51b323f897a8c51cf350c472125f51e"; + sha256 = "0b441392306f5bc6322d83afcc4a19b224279bcc878fbe0d0c6a3edd6a8a2d42"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/cy/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/cy/thunderbird-146.0.tar.xz"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "a1ebc4d2a2248a3f266905ff25a2a1fc08c542cf056123fcc438f7d6ef17962c"; + sha256 = "eff39f475eb24481411ce3b868616c3a65a074467adacb1650854107f4fe2b78"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/da/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/da/thunderbird-146.0.tar.xz"; locale = "da"; arch = "linux-x86_64"; - sha256 = "763af792eea7dc01b8b37764b355728769054ea07582522394f088f3274d89a1"; + sha256 = "a2dbcb1e54e40156e27f3c9227a2a040727348af43ebabff0a99f2c5b85506a4"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/de/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/de/thunderbird-146.0.tar.xz"; locale = "de"; arch = "linux-x86_64"; - sha256 = "62d615b7a04f0e951b2d6c6404cb87c33d3173c6a38eda634348fb873ddb8f29"; + sha256 = "d659be8af3f96c7cef1aa5cb362146834fb0cc7da2e49ae0b4eb3cec0dc06677"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/dsb/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/dsb/thunderbird-146.0.tar.xz"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "deeb5d72e9bf693b846ff98ff880745a48e410915504a236d9dba589870cbfae"; + sha256 = "0085566f037961d07b9ad227bb5a2125113f013f4bf49a97a0ab815b20cdf803"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/el/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/el/thunderbird-146.0.tar.xz"; locale = "el"; arch = "linux-x86_64"; - sha256 = "5197048de7f4c37e4da275c960689fae3255031d6f92e180ab967f09f89e017b"; + sha256 = "e6b56151ca574046ddc4ae202e5bbaeca8de15e1584a37dc2dbf98b353b63ad6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/en-CA/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/en-CA/thunderbird-146.0.tar.xz"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "ecf9f34fa3773372b93c3fded2d656c1341ebd2acad4dd9d9df2985fe6c7cc32"; + sha256 = "637943b6e3441518a7b775e1827b7b3bb195eeca2d2695107b28982be3dab885"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/en-GB/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/en-GB/thunderbird-146.0.tar.xz"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "73bc511c7175f6287185b99f8efc96270acfdba7b2988dd7fe12002d5c56ae90"; + sha256 = "873951ff465dfe937d43d646dc81cc7092b3cafea94fb494ee74ebc09aee7a18"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/en-US/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/en-US/thunderbird-146.0.tar.xz"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "eaa86bfc1001b132cb0dfb67c68a428383dc4e9e6f298ce5e7cedecddeb26349"; + sha256 = "4f1def6f7f7b4a5ba130359c65ed169dd12e13411652ab31b92e7ab612524800"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/es-AR/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/es-AR/thunderbird-146.0.tar.xz"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "f545f8091ea803baba9b7145e2f0f2b2cb7432ce41f16de4422bde490917fc95"; + sha256 = "a04f9f3b629fa4c7e5f14a8936ded1048f741904bf96f4392e92867d2a7c9e3e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/es-ES/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/es-ES/thunderbird-146.0.tar.xz"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "ef5f12fda31830d27f53d4774f6011661738892ac6e4f3ba6edec1637f73a8ff"; + sha256 = "bda891d776d50c859050a4aac8395601ddf99332fd52bea359aeaeaffe5c97e8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/es-MX/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/es-MX/thunderbird-146.0.tar.xz"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "c6a2f8a773884f0e628a62917eb2c0a8d87613f49834d24fb2e2d16ac967bee3"; + sha256 = "49c13833877d229a84d938008e3812972073da9c5dcb49e28175cd0a672944fd"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/et/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/et/thunderbird-146.0.tar.xz"; locale = "et"; arch = "linux-x86_64"; - sha256 = "1ece1e439794a76154ef711957fddeb538f2eaaa05221c306ef5a87ebeafe7f9"; + sha256 = "e19cd088af26222423b70925d22f41dc029e0226fa80f128c2c04011a8e4e2ac"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/eu/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/eu/thunderbird-146.0.tar.xz"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "8babfe4513b7748b9ec1bb87ae628b4c2ed2fdb33f7aba79807d833d625c1535"; + sha256 = "220bfc687b043abc05c272ce1f77b85fd434ed92c6950043df3e29b5a57a8fb1"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/fi/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/fi/thunderbird-146.0.tar.xz"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "ea07e7e9b1a3b442dfadc318d564aea3f1b525ae17ce5068ced6b0efebef2dbc"; + sha256 = "9c86a0c1fc8a83b1caf3bc661168edadad500e4d94758e99df04eeef7d8146a1"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/fr/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/fr/thunderbird-146.0.tar.xz"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "639214963cceceb12dba19417d2275b45fac3258f47b90beb1ad59233fb051d6"; + sha256 = "047e084c5e7d9c0a644de00d4928611b0b9ebc2ef61be9b42fe132497e8ae2b3"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/fy-NL/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/fy-NL/thunderbird-146.0.tar.xz"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "048f67c74da3f23d48967eda0375fc1a52483c0335e5f46befca7813172bf180"; + sha256 = "768b439104fdc9e088cee0dcd0bf8a737febb2d7043a9817cac5be93213486cb"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/ga-IE/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/ga-IE/thunderbird-146.0.tar.xz"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "a913ef1edeac5707fb16bfa5ad8a65113b2b13932fd0c1369de6d4f10a5ee737"; + sha256 = "6f29b4939815a285c454ac89c2530fe3198a8fd590f6b3d4e11ea1e29a0da819"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/gd/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/gd/thunderbird-146.0.tar.xz"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "2052053155a1836b1f2e92455636746b14068882b73ca2b36121351b33e25185"; + sha256 = "874cfcc05f417b01cf1586cd0cdfaa70ee4a367ef8d9075e9f7f3828fecd50e2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/gl/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/gl/thunderbird-146.0.tar.xz"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "ec83942fb443ac7eaacb1a161bdc98ff7244386ef16709d386f39d5f8911c8cb"; + sha256 = "ab8c85989f93652ad49e28dda0e344e0ea670020d28826f9dddd06d8dd0006b3"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/he/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/he/thunderbird-146.0.tar.xz"; locale = "he"; arch = "linux-x86_64"; - sha256 = "b2a0e3aa7163e347c640676620d3afa57602f84e5bbc2476f957e3c666d4e032"; + sha256 = "f7aca5d44ed4987f76a41877663eeb74fb55ebf88600a52fa96b35fc9edaa5e5"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/hr/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/hr/thunderbird-146.0.tar.xz"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "5f27353605e84f3cb0e13f54cbc22ab568431810b80289fbbbbc42ec3ec0130c"; + sha256 = "4f58e76a4309d13f0e044bcbd9312fbc09992a4d712521780d3e5de81678a1ec"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/hsb/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/hsb/thunderbird-146.0.tar.xz"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "5ed90c5ecb566bca8d065ea97d41620e7dac59db54f4151554cb6e53639d8035"; + sha256 = "9a9ec25a63f7df27fa2dc72e8024b68981eec6ad1ff9f98eae2491b432afb7dc"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/hu/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/hu/thunderbird-146.0.tar.xz"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "6147f1a70b3cf51dbfecdc2f3c3cf122a4db65eaef8273fce1111d2eb7f40fcb"; + sha256 = "35a2e304d23c497e846898d599f847312fce3cd48f4244d8c2d145d74c226299"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/hy-AM/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/hy-AM/thunderbird-146.0.tar.xz"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "9a276a881007e9765df5187d0e899e477371ac06b4e5ab39eaa0b6c308a782d7"; + sha256 = "5abaccf57e319eed7a859ae368d7cb610245ab45336bd59232092d1f43b347a6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/id/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/id/thunderbird-146.0.tar.xz"; locale = "id"; arch = "linux-x86_64"; - sha256 = "9b2ff251c5788578f2181f6c9395bf652df28197f0ed7ffe8253b33575aa423d"; + sha256 = "071f61011a257e84aa9380949cad82a47844847587f9a05f8f4a3fd9e2688afe"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/is/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/is/thunderbird-146.0.tar.xz"; locale = "is"; arch = "linux-x86_64"; - sha256 = "fa572b71b20ac2ceae1fae054383ec6a44f39dced1af3408efb6aa454195e03c"; + sha256 = "d2b6733a0aed048b166d3ec002138c3d1367f4f945cf54a91315df9bf3c24d77"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/it/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/it/thunderbird-146.0.tar.xz"; locale = "it"; arch = "linux-x86_64"; - sha256 = "20c797897cfd4c31afd4f411252b7d0b2d1fcadbc237980e31a016c4ee2cd9ed"; + sha256 = "1d24b3cdbe319552cf55b62ef29996eb01eb8ac80762ce54693bf28a8cdfd10f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/ja/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/ja/thunderbird-146.0.tar.xz"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "cb4e5f26b4560d381d4c681bccecf34e33c116a0cea5f93a8941cb648a6ac8ae"; + sha256 = "47cc0abaf67bf9b65ca895e2629cfdf8cccf36451d37e8384898c18c87c19cb6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/ka/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/ka/thunderbird-146.0.tar.xz"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "f717f20f27aaf7a6e6d27b9da84521106bdb254827db2f416f12a28a2eb7e99a"; + sha256 = "a4d00cd28443834460f16d3c7e3378002cfc0ec63abd36027b92f64c8022d2a1"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/kab/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/kab/thunderbird-146.0.tar.xz"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "2ff849fb4962271c7dd9a50977901c0caa95032b5b1eaff295abf34c346f9bc3"; + sha256 = "3866c49958a60cadd6a4942c32639fe4da5eb5381600f2dba177265dd77f14fd"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/kk/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/kk/thunderbird-146.0.tar.xz"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "3e72ef1e8ed75f4a729123701aee8261241828526e6d4b49437e9842d3b9b6f6"; + sha256 = "c8b1a7afc811cd133b682e674664d3833ad349bf4b085de10722fb3c4e2e6c88"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/ko/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/ko/thunderbird-146.0.tar.xz"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "97d01566b299108b0d8fefd871eb3cd48ef2b46b7f5d2f32420b770623869305"; + sha256 = "b56a197a64e9e2e3b0f8a0710e27a92343ee080d91662bf4841c4e1d4d8414f8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/lt/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/lt/thunderbird-146.0.tar.xz"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "2b3ec5fbfc89f3a48a2d8a92ce59846e8f2e71fe9e0e634f1364378b8375f15f"; + sha256 = "fddd3c9d6dce06ddc84fd43f69750d9b92a0c6bea8c1dde293be8cf9aabf9737"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/lv/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/lv/thunderbird-146.0.tar.xz"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "555dc1453dc4a90966ab180abb3ceb6fbafc14d83f6491e02b78eac659198479"; + sha256 = "4d2ae9e2f709a636b24438e2bcdadcf8c7ec89c16afc03227d4d9ae54e488391"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/ms/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/ms/thunderbird-146.0.tar.xz"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "1759c8e3690096f17f5c12eff2c480955c156102dbf6822b32c14111c3826515"; + sha256 = "1d95a33f45fa01e70d6b19ba02d05615feb3e6175c7ee8a2b08eb0573689e9ea"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/nb-NO/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/nb-NO/thunderbird-146.0.tar.xz"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "be2f099734e22afccfcb8e594970dec05b62b25f87fb0e955a2c6d7005ad3dc5"; + sha256 = "2c6bfe53697850efe17c03e262bd59eff7f275a17e492872131106d51009639c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/nl/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/nl/thunderbird-146.0.tar.xz"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "e8a0909f4bc60d9311276383761891ab8bb6bb0906de12f83b6c6e0ce3beb98b"; + sha256 = "7c569dc7adc20640cbdfc0c539beea28cf0f8d9ce3ef089cd574540dc9078042"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/nn-NO/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/nn-NO/thunderbird-146.0.tar.xz"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "340a4b6bf5c9e4a4d66c0a0684d361958f298716b26aac2a1603879b37edc42d"; + sha256 = "e9ae510c88d0d62103e272a06c8c253b04ba384f38b855443c59f7578b1b7c39"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/pa-IN/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/pa-IN/thunderbird-146.0.tar.xz"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "8433f7ae2fb9e5e3e296182eacf91fe4d20a828cd30efd94a24cdb471b59245b"; + sha256 = "3c906e43b480d0c7cf875b7d76f5cc68b56d9586b88ac4ac5fd73db632529d62"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/pl/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/pl/thunderbird-146.0.tar.xz"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "97f264e5582e22a320cf0943dfb38063aec20f251f147de6a66682818c41412c"; + sha256 = "31f9e3a7d999b40840afa65c9bb378424c1b9bcc86bacb85e1c5c8f7cc163a73"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/pt-BR/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/pt-BR/thunderbird-146.0.tar.xz"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "a7a69df6c007a7ca610a72103b3e36ac30518cbe3e6f61fb7cdffe538db32b94"; + sha256 = "505c5e3cfe0f271d7c2f13892cbb3f3d6aff38ac7edbc25d69d916e99559e3f7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/pt-PT/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/pt-PT/thunderbird-146.0.tar.xz"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "2067d1c269959c6e6be2e6d7d8f8628b35abf615c9d071c7c1c1b2293f350d5e"; + sha256 = "ff1dca1874c13cba6518255e1e90534e94a9699f26597fea2ddd3f150241f4a7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/rm/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/rm/thunderbird-146.0.tar.xz"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "24a1d9965ab7087cfb9dd49c9647f358b534156edfa18336b294b2a4533376d9"; + sha256 = "08d8d693ad56a38b789a79a03b47f5723d44d7c7581f59c4be7c78de80f585b2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/ro/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/ro/thunderbird-146.0.tar.xz"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "975dca091c222b7e360b805bc7e23997fbeb1c16dd1cf32cfe01ec4d80377004"; + sha256 = "6999241ff292f4e5268969e9e4ead2e3f42b14ef726bdd5308eb238cb0a6281a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/ru/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/ru/thunderbird-146.0.tar.xz"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "9533b7ff0571f0770bf0cb1ff00d238f78cc166f99ab806cd6847bed17f39a3c"; + sha256 = "eebf3a31950b1459e1c5f3637f514be8fb4fa3df62241ee0481e7404751a293f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/sk/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/sk/thunderbird-146.0.tar.xz"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "e5c59266f562439c7b7137470e7114b045a7981a71fc7880c0704dcd1c008599"; + sha256 = "e1504bf092903deb0668957ae8be9ed18ecbe565a0409486abc00adf93de24da"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/sl/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/sl/thunderbird-146.0.tar.xz"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "71410783590f1ba194831f5f9cb3b3d91bd5414cab300b569f8c487155ab4b30"; + sha256 = "8f1a007bb462bc1cdd38451a39b10a3fa26c0eaf71b1bc337f03928e57f6f176"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/sq/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/sq/thunderbird-146.0.tar.xz"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "01c06fa1033b4e2c2591175c1c9cda51ac3f65e59ce86f85c8a9f3ea5777c92e"; + sha256 = "32ac231ef6e71953fbdb416c8a3a2d89500621bd001d332b162f752a120c54f8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/sr/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/sr/thunderbird-146.0.tar.xz"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "1b883ed23f5e156b029eb036a099ac97dd0c292cfb371170eefa48d1d8bb20a9"; + sha256 = "be2f9493c20e55ce96c9e02c2c0f82759b45300e95a114c31e0ba090cf58e71c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/sv-SE/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/sv-SE/thunderbird-146.0.tar.xz"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "4963be462a5819a8aaf1916a6caaa96f2c76f9c2c7d32d3fecb5b78dce97b56a"; + sha256 = "25660c50144647ae8c1e1d3704a7d21a65b2c229f8cb804a7c7055685a628157"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/th/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/th/thunderbird-146.0.tar.xz"; locale = "th"; arch = "linux-x86_64"; - sha256 = "a3f425482ab92ce2e7eee5d5bd42c3cba394b0ce6aa109e651d84298aba95cf3"; + sha256 = "1393f8fb8ff73d733d8ba46fd3388e33404a8e91939a6a6a27d7a4cc1d09e373"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/tr/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/tr/thunderbird-146.0.tar.xz"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "fb1dfcbdd737c255abdfe621eb861ce8112dccae23136641707cfc6e837dfe1d"; + sha256 = "c256e1031b3d45d6aa3c5fde46f46bf432edeb38cd9729c1fc498d8c19fb1227"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/uk/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/uk/thunderbird-146.0.tar.xz"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "fcdf1d868cc46667920b80df3ce12ef37c8dea0d1ddf589178f17cbddf94e99f"; + sha256 = "636e3ae7e310cf635affd1a67763364d3ef4200b2d604e51b1ae89425ac6bf17"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/uz/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/uz/thunderbird-146.0.tar.xz"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "ad14be3572b1d1a44c44a31b677414038e26bb3586d69193d38e918f6d18ec7a"; + sha256 = "ba7f9fccd952699e94db50a08c70e15d2fbae24a1369111bbab84f7ebce9e9e1"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/vi/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/vi/thunderbird-146.0.tar.xz"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "55c4609367261229b7cae063d413c9789109592026501a01bf866b5ad616ccfc"; + sha256 = "bd9ce768f89c7ebc92c40d4584bbcc08d8533c9427c450313fb933b9fcf399c4"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/zh-CN/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/zh-CN/thunderbird-146.0.tar.xz"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "8f2bbab4bb89cfd17dd67bef9fa9e39373a2ed8eb08b57f723cc15335bc3891c"; + sha256 = "f51fad61eac37e50d25ed6a4de6d77aa284338debf826dbc60c3ce150e8b27b8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/linux-x86_64/zh-TW/thunderbird-145.0.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/zh-TW/thunderbird-146.0.tar.xz"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "9ca858a523bbef0459dfbf44b945a078bb62bc354b20204d5958c2c7d6f9ad53"; + sha256 = "e3bdd687403767f209455852abad066839e571bc03e41a2436a8347bb2c9ad68"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/af/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/af/Thunderbird%20146.0.dmg"; locale = "af"; arch = "mac"; - sha256 = "218740500fff8de044d9b52bd404bab3e663cf476ea62e6f907899f8db64cfe3"; + sha256 = "8b7103adcbafa586edd8b93e9ca071773e1b8dbe7299b3266d4f7669c626863f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/ar/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/ar/Thunderbird%20146.0.dmg"; locale = "ar"; arch = "mac"; - sha256 = "0996bf31ce38b6536139aac9678343b56c1dd6bf3da99144a10387fdcf7b6d28"; + sha256 = "a0cb0ac11737eeb5d87d7240bb5bcf496b22177148ed44dad4c403d7e2e59905"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/ast/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/ast/Thunderbird%20146.0.dmg"; locale = "ast"; arch = "mac"; - sha256 = "355a4d9e531087a0f074f2d559f51e3243ab7f00051236db4f15618752a7c1ef"; + sha256 = "f36847bef915481ad420fa1006a37fe6915bc498f24086508da3dbd13549898d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/be/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/be/Thunderbird%20146.0.dmg"; locale = "be"; arch = "mac"; - sha256 = "0c93b0e21983da273ee44051bae0039c8beadb56fd54bbf1432d97490500be23"; + sha256 = "d5089a1940ea3594008471f8b48a961bcd785e7ba4aa8d53aeaf4533a474642c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/bg/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/bg/Thunderbird%20146.0.dmg"; locale = "bg"; arch = "mac"; - sha256 = "31a6fdbd5004fe02fce836c32286ce1cd5c1f1b35f55492b400306c1eeb8cf93"; + sha256 = "83fedc685b1f0072513a66d1212b9eda7881499289fdc7b2abf3bd0d034d75ba"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/br/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/br/Thunderbird%20146.0.dmg"; locale = "br"; arch = "mac"; - sha256 = "bd107f2faedc14ff00494cc3fc8cbb28700d0d72a5bbe9d4239d6229bef0793c"; + sha256 = "49f9d3d7c16a8473bb64358e8db8a8369cc7fafbfe386018f088363ce29d7a5d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/ca/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/ca/Thunderbird%20146.0.dmg"; locale = "ca"; arch = "mac"; - sha256 = "11baba05f119dbdfa287eda05bfdb259627747973a82c067f0c7da5aa71e2a8a"; + sha256 = "e613006f1619f6a2c8e63640302b3020ad1f63abc0f316853c31db7f10c4706a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/cak/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/cak/Thunderbird%20146.0.dmg"; locale = "cak"; arch = "mac"; - sha256 = "1241b83898c661e06f30bd3f44e53a6bb278570ffb5d595775d5916deea4e9e3"; + sha256 = "0d53146d1e064c3f77f1f6dcb04f2142c3a6e3737b683b1fa8ac74aa8d56eb3a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/cs/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/cs/Thunderbird%20146.0.dmg"; locale = "cs"; arch = "mac"; - sha256 = "95f9481de8ef033983a793f663678254c1305d31b70f4f997414b03617662448"; + sha256 = "b51f819d6583054d3af39c283d8ebec5b5250a1c52f8ee9135d58b5ad071f554"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/cy/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/cy/Thunderbird%20146.0.dmg"; locale = "cy"; arch = "mac"; - sha256 = "564b1e7318bf7e39f5d2a22aecbd6df23d3e7e84f63e03370feddd764d106bbc"; + sha256 = "823e682420d2f9097cfa33cab9715dd23c81b2e8ac0075622efbf8a1b31d54df"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/da/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/da/Thunderbird%20146.0.dmg"; locale = "da"; arch = "mac"; - sha256 = "2a50bc582dd3c1b24e05a9612b6e406610855bbafe84ada56435ad7763c56c84"; + sha256 = "ef0663f0bf328efface3350688ee2ed73eb4b802156a67968b85717c75107b04"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/de/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/de/Thunderbird%20146.0.dmg"; locale = "de"; arch = "mac"; - sha256 = "7d6a509ab811600501a158043e9d873d5dddbc103b21c2e2f627f09e7581062e"; + sha256 = "6a6b5c4c8eeaeca4ad81e471effa41dacf955333719456ab8c823c9995cf9218"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/dsb/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/dsb/Thunderbird%20146.0.dmg"; locale = "dsb"; arch = "mac"; - sha256 = "cc088dc6dfd7159e71391671098d0ae89654ae8f7060e5365ed2cb01d669da13"; + sha256 = "907ad551e24d27e3e25c51b13dcee74bcbb64fe4ccac6c365616ea0afae26793"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/el/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/el/Thunderbird%20146.0.dmg"; locale = "el"; arch = "mac"; - sha256 = "0284c12030c20f78400b565dea4b8de171c42aa0800fbc6ef043ba06f50bb461"; + sha256 = "a21cb1f1a93c7405bb0f4378e8721ac871f121301290bf1a4f50b32b5047fdef"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/en-CA/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/en-CA/Thunderbird%20146.0.dmg"; locale = "en-CA"; arch = "mac"; - sha256 = "cba2f7b64013edd00f3bfa54ebb5da01825c8b978cae27e9735dbbec747f36f1"; + sha256 = "4e4ddfb1342d99a6314b4f55be9e68bda7bff04625a0ce1446584ba09d5310d2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/en-GB/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/en-GB/Thunderbird%20146.0.dmg"; locale = "en-GB"; arch = "mac"; - sha256 = "57b3e6c751c34158a6c0836ad0e34a50530b02cf5fffda5b109027fcffedd607"; + sha256 = "2b2dc52b7d03130913060c4d21e9a316c9586c928517007be32d0af83d8d4340"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/en-US/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/en-US/Thunderbird%20146.0.dmg"; locale = "en-US"; arch = "mac"; - sha256 = "ba5c603c490dbb9e9d50674d31395cff053ff4aa761a8ec40635c211a987150a"; + sha256 = "44e0897af5e1a304c67312e817ce1a412c65c8e3b88bfc456c2bbd1524b16ee9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/es-AR/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/es-AR/Thunderbird%20146.0.dmg"; locale = "es-AR"; arch = "mac"; - sha256 = "895985fd418648c7458bc3197a90a6be188834b19144eed2bde507c84e2f08c3"; + sha256 = "feac32f5d723b616edc31760d1580640e6194b4c41af986c29bd98497cb3c0dc"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/es-ES/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/es-ES/Thunderbird%20146.0.dmg"; locale = "es-ES"; arch = "mac"; - sha256 = "a5cf75aa2f84bd50a0449eea475f12e5af5fba9ee73de3856b5ffa7d4cc3c55b"; + sha256 = "b09594c630d8272a4449dea26202bc714df9545144faad8d1b92b9365b57fe5f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/es-MX/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/es-MX/Thunderbird%20146.0.dmg"; locale = "es-MX"; arch = "mac"; - sha256 = "029ae6aaf571058ca8d2c61b120455d1d60bdb66a080af51e6f45c981fb55064"; + sha256 = "69cd008d9bba78920c01b02b12dbeaa7b96b96590db067c9f8d13f0aa045edc8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/et/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/et/Thunderbird%20146.0.dmg"; locale = "et"; arch = "mac"; - sha256 = "e02c701e271cd1bf270822800b36c09aabd8b1b617c84e381e8bf4a9939b2044"; + sha256 = "33794df31ab78c9e841bfc3deffb61af792d634f20f0ff7b501eb4a0624c0fef"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/eu/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/eu/Thunderbird%20146.0.dmg"; locale = "eu"; arch = "mac"; - sha256 = "d8bcd34720b0e815d56ac0fb287e4e429adce2f99e91664f25ba5632a7e98ac1"; + sha256 = "d4fbe3ba266b72b35bf8d4a7fbd019ee4370156c2ac39c7754a0fa0f382aa1cd"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/fi/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/fi/Thunderbird%20146.0.dmg"; locale = "fi"; arch = "mac"; - sha256 = "c675ad131dc33814a305d419e6f51ea6762b1b602b9646546bb4d35b4c6c4e93"; + sha256 = "4a0a0208afb6ab6116e6e4f0e5b275b98394e214b807a2317f83bbf1fbbc3d9b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/fr/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/fr/Thunderbird%20146.0.dmg"; locale = "fr"; arch = "mac"; - sha256 = "3f62826cfd7f5c67e3a1d9c38e460eb8540bc7694237d99fceb8a0cf8286f625"; + sha256 = "ec1b00de21020e87fd3a40384c16141c9cfc218be074041bb0ec6d570608ec74"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/fy-NL/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/fy-NL/Thunderbird%20146.0.dmg"; locale = "fy-NL"; arch = "mac"; - sha256 = "0407f45afa0e076ba77b8e8b31b340a6698242dd85ca97a173d93b76c5b1cf74"; + sha256 = "6b090c3a5e15e5edca700198d880d002f16482f2c47626dea471ab7da1b4028f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/ga-IE/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/ga-IE/Thunderbird%20146.0.dmg"; locale = "ga-IE"; arch = "mac"; - sha256 = "465b5a3f8d38e156625ad80204bca55e6afcad07a909a65f677f92cac75d303f"; + sha256 = "ef45263545109b82692eacfb9ed09f5e1b0ee013397258aaee6e95a47c17b5c7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/gd/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/gd/Thunderbird%20146.0.dmg"; locale = "gd"; arch = "mac"; - sha256 = "987d2e88f8a1f8d7ba2d787acd83903708a7543f775a46b096abccc749bf502d"; + sha256 = "9e81a33938633232782be27232a21da8cfdf39e4d14c87df25d88a32442fe5b8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/gl/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/gl/Thunderbird%20146.0.dmg"; locale = "gl"; arch = "mac"; - sha256 = "9de6211bd3dff4c802f15fbea85f0d818b09445c9648544229be03b440b0719f"; + sha256 = "7074318b1d2fd872c5fdcbdbe8b4a2070883043de03220f851aa45f7da396083"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/he/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/he/Thunderbird%20146.0.dmg"; locale = "he"; arch = "mac"; - sha256 = "fd6c5e8a1f9dd5b4a276779aa11bc689c8d67f2685a4a8d5beb4dc9571bf9716"; + sha256 = "29a1d9a7887707f8f7efa5d0853566fe52e89aa5649c70e936e8c06f1b69fe59"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/hr/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/hr/Thunderbird%20146.0.dmg"; locale = "hr"; arch = "mac"; - sha256 = "316f0783855e626675d36ddd04673c16a8441b9865f3b8fa6ef201ffd01781d5"; + sha256 = "1641c69a4cf0080ad098f8eb252e01fdd1e117c78a835eb2bb9be1d9b2c5d4c6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/hsb/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/hsb/Thunderbird%20146.0.dmg"; locale = "hsb"; arch = "mac"; - sha256 = "59517f9873b29e04b4b4399f22a4f78b98eeb7b360c5398fa33fdb882ae94330"; + sha256 = "93e334ea854a3fcaa402e0e4be53d4430113a75c50e1c27f50615225b07ab311"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/hu/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/hu/Thunderbird%20146.0.dmg"; locale = "hu"; arch = "mac"; - sha256 = "f9202b069c9cd75583b989c0fc51979d153a635df5072c0b741a3d3aec7ce0f0"; + sha256 = "7bb69e66f25fba1afd6286bf84c51b7ede8129e4cd4269af568bcba9677b91a3"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/hy-AM/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/hy-AM/Thunderbird%20146.0.dmg"; locale = "hy-AM"; arch = "mac"; - sha256 = "e0f1d136ae69b2bbd41427ee3875603802a66794d4add525db2676c9c329b5e2"; + sha256 = "4d46ba3437106f1ce9e58aadaa725fb3cadc5f84c1b767af048b551dc3f799b6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/id/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/id/Thunderbird%20146.0.dmg"; locale = "id"; arch = "mac"; - sha256 = "bdca074de41c27f06641d696688cebfd76f4337d433bfd9f68806dbc24e96535"; + sha256 = "5694ea654a9813ca8a7a265c917b58810a57b86521eb3f7d2837df7d2614fa1f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/is/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/is/Thunderbird%20146.0.dmg"; locale = "is"; arch = "mac"; - sha256 = "a7200b09a0e3e810efaa7356e235b12525ac6236a0cdb1c812894d06d2cd0fb4"; + sha256 = "49d61680532561998c339306e8e4e8e104ee77bfd635e1d8127df3b0820cb193"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/it/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/it/Thunderbird%20146.0.dmg"; locale = "it"; arch = "mac"; - sha256 = "8a97f874a71d18a3809972540f1800738de44ba3fd28b5d8b1d16a463ebd48bb"; + sha256 = "cc8ee56b340448ac4920da5a97c50ec7d95a78434f6324e28287f762307535c0"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/ja-JP-mac/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/ja-JP-mac/Thunderbird%20146.0.dmg"; locale = "ja-JP-mac"; arch = "mac"; - sha256 = "2ea3a11155153ae361ec937c73df31ff09025544b404f5c8a812f03958d1b6ef"; + sha256 = "9e2ff529295fd650a6355cada321af19d30f1df04809d3b951df954173ab50d1"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/ka/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/ka/Thunderbird%20146.0.dmg"; locale = "ka"; arch = "mac"; - sha256 = "0529e09df7bce02b74215d85fc92e22fad29d8c3d4dec6f0297ce134dd4201a3"; + sha256 = "2deb89b12da5e86131c899e49083acec2613da894812ab786c732964c3d5e35c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/kab/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/kab/Thunderbird%20146.0.dmg"; locale = "kab"; arch = "mac"; - sha256 = "d6d571a00d3f69c89e8f1d810db357f92ae7a89649a6cf5a7c6a5ddc1c244450"; + sha256 = "854cc06b5eb3ef985db1aaedbd6c58500f72d73789daa4c45ff88cc817800e38"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/kk/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/kk/Thunderbird%20146.0.dmg"; locale = "kk"; arch = "mac"; - sha256 = "7681a5fdb5e9abdd48ae64cb3fbb178173e0db191e7f74ea728679c5b864e02c"; + sha256 = "f598c7aaab27afed0b1c4741ac3e8fe042dae2b9b575746aa129b1b1f582caee"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/ko/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/ko/Thunderbird%20146.0.dmg"; locale = "ko"; arch = "mac"; - sha256 = "7eb48e2b004f94869377bccea12617fb128ca8062fb8f9b723e4816bb62aa8bb"; + sha256 = "0883013c9b8d76b78ac07c6cdfeed3855fc80c984cd51869f6d2c1044ddcc558"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/lt/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/lt/Thunderbird%20146.0.dmg"; locale = "lt"; arch = "mac"; - sha256 = "585bb98983b1513f132e7953ca1874538ad7f9a7a026e800837bf5da23322f6d"; + sha256 = "ab03c4a5c05fea90fd6f3f3b9c877c6c336a2f8077538a99fdd0f542f74256cb"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/lv/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/lv/Thunderbird%20146.0.dmg"; locale = "lv"; arch = "mac"; - sha256 = "81c9eec1b88d4619f3a9cf0b3bd12da100c361e1ddec28ec9e5a01c499d70af2"; + sha256 = "425076357fbc102c0a834ffc6890ddbe22ff50d6541b234f52a4fd07095ee65d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/ms/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/ms/Thunderbird%20146.0.dmg"; locale = "ms"; arch = "mac"; - sha256 = "04d3bfce5dc99d2ab5ed0a93c347e39d18e0fbf3ae38cd8fce2063bcead3ff68"; + sha256 = "867750d857718f8e2bef47b3bbb1055ecb1dd7f515b3d6183200e48bd2b043d3"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/nb-NO/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/nb-NO/Thunderbird%20146.0.dmg"; locale = "nb-NO"; arch = "mac"; - sha256 = "b5b1a9ae52ecc78153ab6667cedd488fa4494fbc103fdce9cf3f848e5bf19829"; + sha256 = "1bdef129d25376fc3e5dba550f582eb9162fa8f3ba85c46bd48322717fda3434"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/nl/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/nl/Thunderbird%20146.0.dmg"; locale = "nl"; arch = "mac"; - sha256 = "b5ff26f7388620e168aac71867f582ed249fb8235d757da8dcec3d35cadc5a59"; + sha256 = "4f00ce9513f2ebbdc89d9c320da6426c9a93987c8444292464f3ebdfa650ce42"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/nn-NO/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/nn-NO/Thunderbird%20146.0.dmg"; locale = "nn-NO"; arch = "mac"; - sha256 = "a83992e64042ec308730d31d6a562cbaaca4c1210767967a743e93c79bc58a2b"; + sha256 = "0f6dcccf5ecdefa2dd9b5e4c1c9d9e5729c67a30d83c10d9349a532562d12ec6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/pa-IN/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/pa-IN/Thunderbird%20146.0.dmg"; locale = "pa-IN"; arch = "mac"; - sha256 = "988e7acef6cbdac9cb77996f6713d41ecaed7e4f388aca6b3525c3f8700cad6d"; + sha256 = "a604847b7aa88f5376b7077e0419388041ffa522efdb54d5bbd81b73ee16db01"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/pl/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/pl/Thunderbird%20146.0.dmg"; locale = "pl"; arch = "mac"; - sha256 = "89cc7bf976efccde5f67bdb38bd647ce7ce3f82ccb45d4f05bba8abf3357bd77"; + sha256 = "690cbfa356e666c49eec0a80a63d72aee83eb897835f223e0959a58f18cb2354"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/pt-BR/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/pt-BR/Thunderbird%20146.0.dmg"; locale = "pt-BR"; arch = "mac"; - sha256 = "258f7c5a27655bcb1e66d9839177dbd7e5ecb9c6a30856f640471d6821196726"; + sha256 = "c4cdf33e9fa7eb94511cce423859d11e1d2f2188ffd9918d99777d381b30c017"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/pt-PT/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/pt-PT/Thunderbird%20146.0.dmg"; locale = "pt-PT"; arch = "mac"; - sha256 = "eec348c5e221a9284f93291f1852e158dc407152c5bb5943cb8a532c2ae02521"; + sha256 = "f8d52881ea35dd1d8e09f066e4f4aa1c52b69d30010e224b8fe25371b222dcbc"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/rm/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/rm/Thunderbird%20146.0.dmg"; locale = "rm"; arch = "mac"; - sha256 = "4735bdfa14592798b17d4bc42b3d36a4f1535d00959e0b8628c06e6f2238cbf8"; + sha256 = "63c50ac20f895488b48a61e541b3c83b41ad539b3d4aea21baab743480751e5c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/ro/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/ro/Thunderbird%20146.0.dmg"; locale = "ro"; arch = "mac"; - sha256 = "5b8517c7ed7801a5a32fca2f2647166f051e1df99765b203577faa178feabcd6"; + sha256 = "f82ca2036e027740c703d3cbf6faa2415431dfa848e5627f8d8c4bf588925a13"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/ru/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/ru/Thunderbird%20146.0.dmg"; locale = "ru"; arch = "mac"; - sha256 = "cfec2c2c1727c277886ac2d11171630a00cf26dd61cf617e40e215c724aa5dc7"; + sha256 = "e42537b732a24a243be48c79e32dfa180eadf144a1cd801d7a6c0c7318e7ccbc"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/sk/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/sk/Thunderbird%20146.0.dmg"; locale = "sk"; arch = "mac"; - sha256 = "ad5dfb344d47d9cecc080baf564bfc871089d53b09cc240e02abafdcbcf33db0"; + sha256 = "5aaf29f0e43839bd95fe471b5dedeac17061fda3cd73b1c0ac3aa5cdec9a8f38"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/sl/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/sl/Thunderbird%20146.0.dmg"; locale = "sl"; arch = "mac"; - sha256 = "729846888853d2b94e949c71e736f932083be417d42e1e35bf456e11d172b070"; + sha256 = "06f7e9c7516e14e8434d7975d3ff923d62e8297220261c4a10981084ae2b9226"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/sq/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/sq/Thunderbird%20146.0.dmg"; locale = "sq"; arch = "mac"; - sha256 = "1235ab26adcd29f609043c8bebe2135674b787ef50fc4471e9c4bb8cef96bcbc"; + sha256 = "d2ab2e649f752fc979c7c45d2af20c7d9cc36b234b9774bd5dbccca6c5166a74"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/sr/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/sr/Thunderbird%20146.0.dmg"; locale = "sr"; arch = "mac"; - sha256 = "93c08f4bf22b08673d405c484853646b29640b7d52718fa946f2950158a77cf2"; + sha256 = "1c7130c8af960c87c69e5dac41aa17c2805680283fe6f26ef6b192a295105406"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/sv-SE/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/sv-SE/Thunderbird%20146.0.dmg"; locale = "sv-SE"; arch = "mac"; - sha256 = "80a32094087872ea206b65bf0403edfbac81e5e2e4f2205abe74ac5f9495af79"; + sha256 = "c1f82499e1c41c2b5e8a1b696f98cb75b144c97a1f5d5366a644af6476860c88"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/th/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/th/Thunderbird%20146.0.dmg"; locale = "th"; arch = "mac"; - sha256 = "05ed4f3a81345ff97964ec2a9fb86b9ec6248c2bdbe9da855071e79a2856928a"; + sha256 = "80d3b71b0534c6529101c77df5273ab048bde5023f12d03cbb75266b03b1c01b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/tr/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/tr/Thunderbird%20146.0.dmg"; locale = "tr"; arch = "mac"; - sha256 = "715a8f0119ad85a79df2fd44c7664c140f87ce6f1e7fa09e167de54e40f89108"; + sha256 = "5c35cac2ba326ffe2e17a572315e2118bc81e6cf5a32c0199387bbc30e7e0b65"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/uk/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/uk/Thunderbird%20146.0.dmg"; locale = "uk"; arch = "mac"; - sha256 = "a23da9e95a5dafffd57dc51552b24d706eb2cd2803f1cbe72d7bbf5e7f4fd9d0"; + sha256 = "861927499d182d41c7c9fb917ba14c780708eedb4afd5567a47c6f91da3b1ee6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/uz/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/uz/Thunderbird%20146.0.dmg"; locale = "uz"; arch = "mac"; - sha256 = "506cd1b29d26addaa3e298b3dd66deba36e549daf7be05c480d432a63bd61303"; + sha256 = "0f6c3ab92741bc63f48cf25d9a45ecf4243feba3ce252f94dbe51536e8ef722a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/vi/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/vi/Thunderbird%20146.0.dmg"; locale = "vi"; arch = "mac"; - sha256 = "b7bab9d2569528eaec988ccc70082b4b5f61aaf86f18e13c5e1f8b0bdc469568"; + sha256 = "a2fd5343b652fbb83475c08e7d82c29f415da5b1b5b670eaefb7ba00297beda8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/zh-CN/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/zh-CN/Thunderbird%20146.0.dmg"; locale = "zh-CN"; arch = "mac"; - sha256 = "02e6995cc88761b498236a410a6d6b01e6bdc44ef0ab9cb5fb7b77ea7fc52d87"; + sha256 = "5c54ee49e83c0f264516277439b28b5033a1b7ce63ee0ba9edcc906cf1bccaf8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/145.0/mac/zh-TW/Thunderbird%20145.0.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/146.0/mac/zh-TW/Thunderbird%20146.0.dmg"; locale = "zh-TW"; arch = "mac"; - sha256 = "255903c2d2caa0bef6e8cb40d7e1e63e920760737dfa9ba307745222ac31556c"; + sha256 = "a5ed86edd0112c920444827a2fd5d0769bd5bb1a12f0ef0e0bbd042b9337ecb2"; } ]; } From 9b85faabe84079e8b558494809375a685608cdf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 11 Dec 2025 00:04:40 +0100 Subject: [PATCH 25/63] knot-resolver_5: fix eval when using extraFeatures (cherry picked from commit 9c7b26a2fdd0ef30704268e12cbb66f98b6a08a1) --- pkgs/by-name/kn/knot-resolver_5/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/kn/knot-resolver_5/package.nix b/pkgs/by-name/kn/knot-resolver_5/package.nix index 20d8e1c5494f..c9bb50152554 100644 --- a/pkgs/by-name/kn/knot-resolver_5/package.nix +++ b/pkgs/by-name/kn/knot-resolver_5/package.nix @@ -168,7 +168,7 @@ let ]; preferLocalBuild = true; allowSubstitutes = false; - inherit (unwrapped) meta; + inherit (unwrapped) version meta; } ( '' From 9754f5e62e2f9f990f3564f48918e0f2989f7976 Mon Sep 17 00:00:00 2001 From: Alexander Bantyev Date: Thu, 11 Dec 2025 10:11:37 +0100 Subject: [PATCH 26/63] util-linux: add in-tree comments for patches Adds in-tree comments for all patches, to better comply with the style guide. --- pkgs/by-name/ut/util-linux/package.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/by-name/ut/util-linux/package.nix b/pkgs/by-name/ut/util-linux/package.nix index 6b5a028ca029..b71a6d6bfb03 100644 --- a/pkgs/by-name/ut/util-linux/package.nix +++ b/pkgs/by-name/ut/util-linux/package.nix @@ -48,7 +48,12 @@ stdenv.mkDerivation (finalAttrs: { }; patches = [ + # Search $PATH for the shutdown binary instead of hard-coding /sbin/shutdown, + # which isn't valid on NixOS (and a compatibility link on most other modern + # distros anyway). ./rtcwake-search-PATH-for-shutdown.patch + # bits: only build when cpu_set_t is available + # Otherwise, the build fails on macOS (fetchurl { name = "bits-only-build-when-cpu_set_t-is-available.patch"; url = "https://lore.kernel.org/util-linux/20250501075806.88759-1-hi@alyssa.is/raw"; From 31a7bc9c59bed269a496fd153260eb42e532d96a Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Thu, 11 Dec 2025 20:01:57 +0800 Subject: [PATCH 27/63] cjs: 128.0-unstable-2025-09-15 -> 128.1 https://github.com/linuxmint/cjs/compare/1f39576bafe6bc05bce960e590dc743dd7990e39...128.1 --- pkgs/by-name/cj/cjs/package.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/cj/cjs/package.nix b/pkgs/by-name/cj/cjs/package.nix index 173d92bab441..42a63daa43ac 100644 --- a/pkgs/by-name/cj/cjs/package.nix +++ b/pkgs/by-name/cj/cjs/package.nix @@ -17,18 +17,15 @@ libxml2, }: -stdenv.mkDerivation { +stdenv.mkDerivation (finalAttrs: { pname = "cjs"; - version = "128.0-unstable-2025-09-15"; + version = "128.1"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cjs"; - # Backport fixes to support GLib 2.86.0 typelibs - # nixpkgs-update: no auto update - # https://github.com/linuxmint/cjs/issues/130 - rev = "1f39576bafe6bc05bce960e590dc743dd7990e39"; - hash = "sha256-drKLaTZLIZfPIhcVcCAB48PdM2b0GNLe5xrHGBysVmM="; + tag = finalAttrs.version; + hash = "sha256-YJwzFKEOnwBTJUPagXk1PCYmQqVqr7Zu7aVaJCPgirU="; }; outputs = [ @@ -88,4 +85,4 @@ stdenv.mkDerivation { platforms = lib.platforms.linux; teams = [ lib.teams.cinnamon ]; }; -} +}) From 701ecc28b54839bdebe690d5448d6626079f7704 Mon Sep 17 00:00:00 2001 From: Anton Tetov Date: Thu, 11 Dec 2025 13:57:04 +0100 Subject: [PATCH 28/63] karakeep: 0.27.0 -> 0.29.1 --- pkgs/by-name/ka/karakeep/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ka/karakeep/package.nix b/pkgs/by-name/ka/karakeep/package.nix index 18eee25819bb..28589cceb109 100644 --- a/pkgs/by-name/ka/karakeep/package.nix +++ b/pkgs/by-name/ka/karakeep/package.nix @@ -18,13 +18,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "karakeep"; - version = "0.27.0"; + version = "0.29.1"; src = fetchFromGitHub { owner = "karakeep-app"; repo = "karakeep"; tag = "v${finalAttrs.version}"; - hash = "sha256-KkRCMS/g+xCQyVh1qB/kf5Seqrn2McYBaUHqKOeigCA="; + hash = "sha256-mOIX9pNVESRPD2Jjdr014NyYO/3rSvYpr4RP34RKE8c="; }; patches = [ @@ -54,7 +54,7 @@ stdenv.mkDerivation (finalAttrs: { }; fetcherVersion = 1; - hash = "sha256-74jLff9v2+qc09b8ArooUX6qpFt2tDNW3ZayHPcDVj0="; + hash = "sha256-rFMLmqPEvP6Vn7VNmE2tGsnv9YPMaL1aktwTsnjv5+M="; }; buildPhase = '' runHook preBuild @@ -139,7 +139,7 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; # remove hardcoded version if upstream syncs general version with cli # version - version = "0.25.0"; + version = "0.27.1"; }; }; updateScript = nix-update-script { }; From aac27313ae73cdcd5bc84069449a96231dc0062d Mon Sep 17 00:00:00 2001 From: Anton Tetov Date: Thu, 11 Dec 2025 13:57:04 +0100 Subject: [PATCH 29/63] karakeep: insert full path to (gnu)tar in CLI command --- pkgs/by-name/ka/karakeep/package.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/by-name/ka/karakeep/package.nix b/pkgs/by-name/ka/karakeep/package.nix index 28589cceb109..b37ee0665520 100644 --- a/pkgs/by-name/ka/karakeep/package.nix +++ b/pkgs/by-name/ka/karakeep/package.nix @@ -7,6 +7,7 @@ testers, nodejs, node-gyp, + gnutar, inter, python3, srcOnly, @@ -31,8 +32,12 @@ stdenv.mkDerivation (finalAttrs: { ./patches/use-local-font.patch ./patches/dont-lock-pnpm-version.patch ]; + postPatch = '' ln -s ${inter}/share/fonts/truetype ./apps/web/app/fonts + + substituteInPlace apps/cli/src/commands/dump.ts \ + --replace-fail 'spawn("tar"' 'spawn("${lib.getExe gnutar}"' ''; nativeBuildInputs = [ @@ -41,6 +46,11 @@ stdenv.mkDerivation (finalAttrs: { node-gyp pnpm.configHook ]; + + buildInputs = [ + gnutar + ]; + pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version; From e9dcea9fad8ead6cac45983bff824ea7d0bfa88e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 11 Dec 2025 20:57:11 +0000 Subject: [PATCH 30/63] audacity: 3.7.6 -> 3.7.7 --- pkgs/by-name/au/audacity/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/au/audacity/package.nix b/pkgs/by-name/au/audacity/package.nix index b5f091610d45..27cc3b3628df 100644 --- a/pkgs/by-name/au/audacity/package.nix +++ b/pkgs/by-name/au/audacity/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "audacity"; - version = "3.7.6"; + version = "3.7.7"; src = fetchFromGitHub { owner = "audacity"; repo = "audacity"; rev = "Audacity-${finalAttrs.version}"; - hash = "sha256-Y59bKs0l97HJWiCHYBkzbbHJsmraUkM2qRGfKSXjT80="; + hash = "sha256-UyQffN9vOSD3uDk4jpYGsjH577pU4V7FpFAu0xdsXUA="; }; patches = [ From fed747e28316eafeb7d57fa6b6a7ae719cc4fe08 Mon Sep 17 00:00:00 2001 From: azey Date: Thu, 11 Dec 2025 22:29:27 +0100 Subject: [PATCH 31/63] teams/k3s: add azey7f --- maintainers/github-teams.json | 1 + 1 file changed, 1 insertion(+) diff --git a/maintainers/github-teams.json b/maintainers/github-teams.json index 38312a0b760a..2039321c1254 100644 --- a/maintainers/github-teams.json +++ b/maintainers/github-teams.json @@ -483,6 +483,7 @@ "wrmilling": 6162814 }, "members": { + "azey7f": 41077433, "frederictobiasc": 26125115, "heywoodlh": 18178614, "rorosen": 76747196 From 55efaae6a6aa90ea718849a19579b522c9212f71 Mon Sep 17 00:00:00 2001 From: azey Date: Thu, 11 Dec 2025 22:10:32 +0100 Subject: [PATCH 32/63] ci/treefmt: remove K3s test exclusion from yamlfmt Clean-up after 7a9fddc571050d80a9db9c909fe6a0193a2dc695. --- ci/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/ci/default.nix b/ci/default.nix index 9c982dcfc032..73c05a3529f5 100644 --- a/ci/default.nix +++ b/ci/default.nix @@ -81,8 +81,6 @@ let }; }; settings.formatter.yamlfmt.excludes = [ - # Breaks helm templating - "nixos/tests/k3s/k3s-test-chart/templates/*" # Aligns comments with whitespace "pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml" # TODO: Fix formatting for auto-generated file From a1c0c97bd3a005823b3ecfd49a3198a2a22f1768 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Dec 2025 02:31:08 +0000 Subject: [PATCH 33/63] ollama-cpu: 0.13.2 -> 0.13.3 --- pkgs/by-name/ol/ollama/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ol/ollama/package.nix b/pkgs/by-name/ol/ollama/package.nix index 615d4e66b382..4d2697e0c4d9 100644 --- a/pkgs/by-name/ol/ollama/package.nix +++ b/pkgs/by-name/ol/ollama/package.nix @@ -138,13 +138,13 @@ in goBuild (finalAttrs: { pname = "ollama"; # don't forget to invalidate all hashes each update - version = "0.13.2"; + version = "0.13.3"; src = fetchFromGitHub { owner = "ollama"; repo = "ollama"; tag = "v${finalAttrs.version}"; - hash = "sha256-ffovCXdL/Ooo2Gi/G/A5d+vIwa9LFnaiV1931x2vyG8="; + hash = "sha256-DsAgosnvkyGFPKSjjnE9dZ37CfqAIlvodpVjHLihX2A="; }; vendorHash = "sha256-NM0vtue0MFrAJCjmpYJ/rPEDWBxWCzBrWDb0MVOhY+Q="; From 3fba5aaa2283d121512384133d7ab59b7bab57ac Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Fri, 12 Dec 2025 05:05:46 +0100 Subject: [PATCH 34/63] jenkins: Add Felix Singer as a maintainer Signed-off-by: Felix Singer --- pkgs/by-name/je/jenkins/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/je/jenkins/package.nix b/pkgs/by-name/je/jenkins/package.nix index 31887afcfdf9..298801b8a4a2 100644 --- a/pkgs/by-name/je/jenkins/package.nix +++ b/pkgs/by-name/je/jenkins/package.nix @@ -81,6 +81,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { license = lib.licenses.mit; maintainers = with lib.maintainers; [ earldouglas + felixsinger ]; changelog = "https://www.jenkins.io/changelog-stable/#v${finalAttrs.version}"; mainProgram = "jenkins-cli"; From 5964ba5d9f10dc47e9f30ebcfc981fda34acd26d Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Fri, 12 Dec 2025 05:08:08 +0100 Subject: [PATCH 35/63] nixos/jenkins: Add Felix Singer as a maintainer Signed-off-by: Felix Singer --- .../services/continuous-integration/jenkins/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index 8ec7c972436b..12ba4e342985 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -290,4 +290,8 @@ in }; }; }; + + meta.maintainers = with lib.maintainers; [ + felixsinger + ]; } From 6fe7dcedee6076899b11dbfb03ce4fb6d7fc2a1c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Dec 2025 06:19:13 +0000 Subject: [PATCH 36/63] lemmy-server: 0.19.13 -> 0.19.14 --- pkgs/servers/web-apps/lemmy/pin.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/web-apps/lemmy/pin.json b/pkgs/servers/web-apps/lemmy/pin.json index 7758fc16543f..5f2c54575200 100644 --- a/pkgs/servers/web-apps/lemmy/pin.json +++ b/pkgs/servers/web-apps/lemmy/pin.json @@ -1,8 +1,8 @@ { - "serverVersion": "0.19.13", - "uiVersion": "0.19.13", - "serverHash": "sha256-EKZZsJ8B111z+5SC79arMQaPfhQBNX4uYXyRtU8yAJM=", - "serverCargoHash": "sha256-sMPLxuG3leCVHqTK4MD5F3RxbO7u6om/vb0opquoa3I=", - "uiHash": "sha256-SU/JS3LdSm4gEfwG9JXPH0WPzmT/8hiSEpuJdXpaywc=", + "serverVersion": "0.19.14", + "uiVersion": "0.19.14", + "serverHash": "sha256-3Y9TnwnU1k+ITqiS8nbzAD36IlnlcDCTOshoMbFEH7Q=", + "serverCargoHash": "sha256-R0jM7HL//yZKP3ZiaJLcZF84gWEsxl9xXyykO9vCdu8=", + "uiHash": "sha256-eTvRSpZjmeC+CuC1LtRPO8OoGX/AVQr+O12+MilPWbw=", "uiPNPMDepsHash": "sha256-tuarUG1uKx6Q1O+rF6DHyK8MEseF9lKk34qtRWWScAg=" } From 620a930b45b8bbb7936ef2551d2f3ddbcecf4932 Mon Sep 17 00:00:00 2001 From: Maor Haimovitz Date: Wed, 10 Dec 2025 21:41:13 +0000 Subject: [PATCH 37/63] fooyin: add patch for Qt 6.10.1 compatibility --- pkgs/by-name/fo/fooyin/package.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/by-name/fo/fooyin/package.nix b/pkgs/by-name/fo/fooyin/package.nix index 4c65acf2f046..cdaf7c3925bd 100644 --- a/pkgs/by-name/fo/fooyin/package.nix +++ b/pkgs/by-name/fo/fooyin/package.nix @@ -79,6 +79,12 @@ stdenv.mkDerivation (finalAttrs: { }) ]; + # Fix compatibility with Qt 6.10.1 - should be fixed in next release + postPatch = '' + substituteInPlace src/utils/starrating.cpp \ + --replace-fail '.arg(alignment);' '.arg(alignment.toInt());' + ''; + meta = { description = "Customisable music player"; homepage = "https://www.fooyin.org/"; From 00f8f3e69a7085147fbc8de5b1feb7b8d7448a9b Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Wed, 29 Oct 2025 08:28:54 +0100 Subject: [PATCH 38/63] python3Packages.coal: make standalone optional --- pkgs/development/python-modules/coal/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/coal/default.nix b/pkgs/development/python-modules/coal/default.nix index 773de813e0da..28a7e1642d4f 100644 --- a/pkgs/development/python-modules/coal/default.nix +++ b/pkgs/development/python-modules/coal/default.nix @@ -10,6 +10,8 @@ eigenpy, pylatexenc, numpy, + + buildStandalone ? true, }: toPythonModule ( coal.overrideAttrs (super: { @@ -17,7 +19,7 @@ toPythonModule ( cmakeFlags = super.cmakeFlags ++ [ (lib.cmakeBool "BUILD_PYTHON_INTERFACE" true) - (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" true) + (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" buildStandalone) ]; # those are used by CMake at configure/build time @@ -26,11 +28,12 @@ toPythonModule ( pylatexenc ]; - propagatedBuildInputs = super.propagatedBuildInputs ++ [ + propagatedBuildInputs = [ boost - coal eigenpy - ]; + ] + ++ super.propagatedBuildInputs + ++ lib.optional buildStandalone coal; nativeCheckInputs = [ pythonImportsCheckHook From 59b3a7cfb7bc146577fa1d977d82d161dde4ba46 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Wed, 29 Oct 2025 08:29:08 +0100 Subject: [PATCH 39/63] python3Packages.pinocchio: make standalone optional --- pkgs/development/python-modules/pinocchio/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pinocchio/default.nix b/pkgs/development/python-modules/pinocchio/default.nix index d2f722d9ee5c..95bda9dc0959 100644 --- a/pkgs/development/python-modules/pinocchio/default.nix +++ b/pkgs/development/python-modules/pinocchio/default.nix @@ -10,6 +10,8 @@ casadi, matplotlib, python, + + buildStandalone ? true, }: toPythonModule ( pinocchio.overrideAttrs (super: { @@ -17,18 +19,19 @@ toPythonModule ( cmakeFlags = super.cmakeFlags ++ [ (lib.cmakeBool "BUILD_PYTHON_INTERFACE" true) - (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" true) + (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" buildStandalone) ]; nativeBuildInputs = super.nativeBuildInputs ++ [ python ]; - propagatedBuildInputs = super.propagatedBuildInputs ++ [ + propagatedBuildInputs = [ casadi coal - pinocchio - ]; + ] + ++ super.propagatedBuildInputs + ++ lib.optional buildStandalone pinocchio; checkInputs = super.checkInputs ++ [ matplotlib From f1eb62a226538fef187826c8d9fb90b13da2200d Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Wed, 29 Oct 2025 08:29:24 +0100 Subject: [PATCH 40/63] python3Packages.example-robot-data: make standalone optional --- .../python-modules/example-robot-data/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/example-robot-data/default.nix b/pkgs/development/python-modules/example-robot-data/default.nix index 3a9bfc18b39d..fe452c73b439 100644 --- a/pkgs/development/python-modules/example-robot-data/default.nix +++ b/pkgs/development/python-modules/example-robot-data/default.nix @@ -8,6 +8,8 @@ python, pinocchio, + + buildStandalone ? true, }: toPythonModule ( example-robot-data.overrideAttrs (super: { @@ -15,17 +17,18 @@ toPythonModule ( cmakeFlags = super.cmakeFlags ++ [ (lib.cmakeBool "BUILD_PYTHON_INTERFACE" true) - (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" true) + (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" buildStandalone) ]; nativeBuildInputs = super.nativeBuildInputs ++ [ python ]; - propagatedBuildInputs = super.propagatedBuildInputs ++ [ - example-robot-data + propagatedBuildInputs = [ pinocchio - ]; + ] + ++ super.propagatedBuildInputs + ++ lib.optional buildStandalone example-robot-data; nativeCheckInputs = [ pythonImportsCheckHook From cf32a6f3742eb4954e008f6b89ab78d523be6d36 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Wed, 29 Oct 2025 08:29:44 +0100 Subject: [PATCH 41/63] python3Packages.ndcurves: make standalone optional --- pkgs/development/python-modules/ndcurves/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/ndcurves/default.nix b/pkgs/development/python-modules/ndcurves/default.nix index 885cfa64a024..f04d1a110815 100644 --- a/pkgs/development/python-modules/ndcurves/default.nix +++ b/pkgs/development/python-modules/ndcurves/default.nix @@ -9,13 +9,15 @@ boost, pinocchio, python, + + buildStandalone ? true, }: toPythonModule ( ndcurves.overrideAttrs (super: { pname = "py-${super.pname}"; cmakeFlags = super.cmakeFlags ++ [ (lib.cmakeBool "BUILD_PYTHON_INTERFACE" true) - (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" true) + (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" buildStandalone) ]; # those are used by CMake at configure/build time nativeBuildInputs = super.nativeBuildInputs ++ [ @@ -24,12 +26,14 @@ toPythonModule ( propagatedBuildInputs = [ boost pinocchio - ndcurves ] - ++ super.propagatedBuildInputs; + ++ super.propagatedBuildInputs + ++ lib.optional buildStandalone ndcurves; + nativeCheckInputs = [ pythonImportsCheckHook ]; + pythonImportsCheck = [ "ndcurves" ]; From f585895ab90a403c367e5d1ff1b96fca76145399 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Wed, 29 Oct 2025 08:29:53 +0100 Subject: [PATCH 42/63] python3Packages.tsid: make standalone optional --- pkgs/development/python-modules/tsid/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/tsid/default.nix b/pkgs/development/python-modules/tsid/default.nix index 3894c80d2854..7fbf21fba188 100644 --- a/pkgs/development/python-modules/tsid/default.nix +++ b/pkgs/development/python-modules/tsid/default.nix @@ -8,6 +8,8 @@ pinocchio, python, + + buildStandalone ? true, }: toPythonModule ( tsid.overrideAttrs (super: { @@ -15,7 +17,7 @@ toPythonModule ( cmakeFlags = super.cmakeFlags ++ [ (lib.cmakeBool "BUILD_PYTHON_INTERFACE" true) - (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" true) + (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" buildStandalone) ]; # those are used by CMake at configure/build time @@ -23,10 +25,11 @@ toPythonModule ( python ]; - propagatedBuildInputs = super.propagatedBuildInputs ++ [ + propagatedBuildInputs = [ pinocchio - tsid - ]; + ] + ++ super.propagatedBuildInputs + ++ lib.optional buildStandalone tsid; nativeCheckInputs = [ pythonImportsCheckHook From 0719964b5af5380d183280cf7aa9d54f6cc83f90 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Wed, 29 Oct 2025 08:30:03 +0100 Subject: [PATCH 43/63] python3Packages.crocoddyl: make standalone optional --- pkgs/development/python-modules/crocoddyl/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/crocoddyl/default.nix b/pkgs/development/python-modules/crocoddyl/default.nix index 5e5e449899f0..0ab83be96bc9 100644 --- a/pkgs/development/python-modules/crocoddyl/default.nix +++ b/pkgs/development/python-modules/crocoddyl/default.nix @@ -14,6 +14,8 @@ ipykernel, python, scipy, + + buildStandalone ? true, }: toPythonModule ( crocoddyl.overrideAttrs (super: { @@ -21,7 +23,7 @@ toPythonModule ( cmakeFlags = super.cmakeFlags ++ [ (lib.cmakeBool "BUILD_PYTHON_INTERFACE" true) - (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" true) + (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" buildStandalone) ]; # those are used by CMake at configure/build time @@ -29,10 +31,11 @@ toPythonModule ( python ]; - propagatedBuildInputs = super.propagatedBuildInputs ++ [ - crocoddyl + propagatedBuildInputs = [ example-robot-data - ]; + ] + ++ super.propagatedBuildInputs + ++ lib.optional buildStandalone crocoddyl; nativeCheckInputs = [ ffmpeg From 458fade3bdea6c1d30cbb55823861a529578e95a Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Wed, 29 Oct 2025 08:30:14 +0100 Subject: [PATCH 44/63] python3Packages.aligator: make standalone optional --- pkgs/development/python-modules/aligator/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aligator/default.nix b/pkgs/development/python-modules/aligator/default.nix index 6ef954f53a0e..e6e95ac5ba71 100644 --- a/pkgs/development/python-modules/aligator/default.nix +++ b/pkgs/development/python-modules/aligator/default.nix @@ -12,6 +12,8 @@ python, matplotlib, pytest, + + buildStandalone ? true, }: toPythonModule ( aligator.overrideAttrs (super: { @@ -19,7 +21,7 @@ toPythonModule ( cmakeFlags = super.cmakeFlags ++ [ (lib.cmakeBool "BUILD_PYTHON_INTERFACE" true) - (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" true) + (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" buildStandalone) ]; # this is used by CMake at configure/build time @@ -27,11 +29,12 @@ toPythonModule ( python ]; - propagatedBuildInputs = super.propagatedBuildInputs ++ [ - aligator + propagatedBuildInputs = [ crocoddyl pinocchio - ]; + ] + ++ super.propagatedBuildInputs + ++ lib.optional buildStandalone aligator; nativeCheckInputs = [ pythonImportsCheckHook From 2b60613f8763ede13a1cff2ff533e8afe123f6dc Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Mon, 10 Nov 2025 17:14:19 +0100 Subject: [PATCH 45/63] python3Packages.mim-solvers: make standalone optional --- pkgs/development/python-modules/mim-solvers/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/mim-solvers/default.nix b/pkgs/development/python-modules/mim-solvers/default.nix index ebb18af22dfd..ca90458c4476 100644 --- a/pkgs/development/python-modules/mim-solvers/default.nix +++ b/pkgs/development/python-modules/mim-solvers/default.nix @@ -19,6 +19,8 @@ # nativeCheckInputs pytest, + + buildStandalone ? true, }: toPythonModule ( mim-solvers.overrideAttrs (super: { @@ -26,7 +28,7 @@ toPythonModule ( cmakeFlags = super.cmakeFlags ++ [ (lib.cmakeBool "BUILD_PYTHON_INTERFACE" true) - (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" true) + (lib.cmakeBool "BUILD_STANDALONE_PYTHON_INTERFACE" buildStandalone) ]; # this is used by CMake at configure/build time @@ -38,12 +40,12 @@ toPythonModule ( boost crocoddyl eigenpy - mim-solvers osqp proxsuite scipy ] - ++ super.propagatedBuildInputs; + ++ super.propagatedBuildInputs + ++ lib.optional buildStandalone mim-solvers; nativeCheckInputs = super.nativeCheckInputs ++ [ pythonImportsCheckHook From 9ce301353fb700793cb7bc4780f7325549a094fa Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Dec 2025 08:28:03 +0000 Subject: [PATCH 46/63] incus-ui-canonical: 0.18.3 -> 0.18.4 --- pkgs/by-name/in/incus-ui-canonical/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/in/incus-ui-canonical/package.nix b/pkgs/by-name/in/incus-ui-canonical/package.nix index 3f172a72a8d8..80d225041472 100644 --- a/pkgs/by-name/in/incus-ui-canonical/package.nix +++ b/pkgs/by-name/in/incus-ui-canonical/package.nix @@ -20,14 +20,14 @@ let in stdenv.mkDerivation rec { pname = "incus-ui-canonical"; - version = "0.18.3"; + version = "0.18.4"; src = fetchFromGitHub { owner = "zabbly"; repo = "incus-ui-canonical"; # only use tags prefixed by incus- they are the tested fork versions tag = "incus-${version}"; - hash = "sha256-0wKGPH+ffJ/S8FA46ve5SzyNZJ9C2fv8Psiqu8p6D0s="; + hash = "sha256-IzXmW5MZZgHXnTGs85TQYvLETsamBxuBAgBUST4Q5m0="; }; offlineCache = fetchYarnDeps { From 04a5bd9041e79a9fdbfa131369689510c2f68924 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Dec 2025 09:30:13 +0000 Subject: [PATCH 47/63] python3Packages.aiogram: 3.22.0 -> 3.23.0 --- pkgs/development/python-modules/aiogram/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiogram/default.nix b/pkgs/development/python-modules/aiogram/default.nix index 6db1be8e5a48..1b5bad313f5e 100644 --- a/pkgs/development/python-modules/aiogram/default.nix +++ b/pkgs/development/python-modules/aiogram/default.nix @@ -29,7 +29,7 @@ buildPythonPackage rec { pname = "aiogram"; - version = "3.22.0"; + version = "3.23.0"; pyproject = true; disabled = pythonOlder "3.9"; @@ -38,7 +38,7 @@ buildPythonPackage rec { owner = "aiogram"; repo = "aiogram"; tag = "v${version}"; - hash = "sha256-4LZ4+bt9n0q8WMaMEaAAIFnEuDUSd+Aq+YW49Xbcp5c="; + hash = "sha256-vk77HsZT/BwQHAWwgMpKJQSN6HUfIycl7GCFbZ5Fbr8="; }; build-system = [ hatchling ]; From b36c61018e704efadc7feb305f7244702d889823 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 12 Dec 2025 10:32:15 +0100 Subject: [PATCH 48/63] python313Packages.playwrightcapture: 1.35.1 -> 1.36.0 Diff: https://github.com/Lookyloo/PlaywrightCapture/compare/v1.35.1...v1.36.0 Changelog: https://github.com/Lookyloo/PlaywrightCapture/releases/tag/v1.36.0 --- pkgs/development/python-modules/playwrightcapture/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/playwrightcapture/default.nix b/pkgs/development/python-modules/playwrightcapture/default.nix index e32188f5bd4f..5a1b1a421db8 100644 --- a/pkgs/development/python-modules/playwrightcapture/default.nix +++ b/pkgs/development/python-modules/playwrightcapture/default.nix @@ -24,14 +24,14 @@ buildPythonPackage rec { pname = "playwrightcapture"; - version = "1.35.1"; + version = "1.36.0"; pyproject = true; src = fetchFromGitHub { owner = "Lookyloo"; repo = "PlaywrightCapture"; tag = "v${version}"; - hash = "sha256-P2d2RY4A5Yxug1Rj5UmXBW5esEdk0M1wZyOBPKtJslA="; + hash = "sha256-Iqk7VFhlmzjQPvm08HwYkopV9Q/TNwSVedGH5GiMdWE="; }; pythonRelaxDeps = [ From 063986282a322ecea5a507c73a7b8b6ceadb7ce4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 12 Dec 2025 10:32:32 +0100 Subject: [PATCH 49/63] python313Packages.lacuscore: 1.20.1 -> 1.21.0 Changelog: https://github.com/ail-project/LacusCore/releases/tag/v1.21.0 --- pkgs/development/python-modules/lacuscore/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/lacuscore/default.nix b/pkgs/development/python-modules/lacuscore/default.nix index fc6087030270..94a79f5ed2a6 100644 --- a/pkgs/development/python-modules/lacuscore/default.nix +++ b/pkgs/development/python-modules/lacuscore/default.nix @@ -18,14 +18,14 @@ buildPythonPackage rec { pname = "lacuscore"; - version = "1.20.1"; + version = "1.21.0"; pyproject = true; src = fetchFromGitHub { owner = "ail-project"; repo = "LacusCore"; tag = "v${version}"; - hash = "sha256-L7hmqNymXkZD/NQk1OQ9H34aJcCa6W23gkQSjomv7Iw="; + hash = "sha256-q/JVvhI1NZTuX8vRWi/Q9ANE8ZTaTFNfb94n0NpH+/0="; }; pythonRelaxDeps = [ From f7b9f7e1c97998bfc255ffc48fbdf77b56d4c092 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 12 Dec 2025 10:58:05 +0100 Subject: [PATCH 50/63] python313Packages.aiogram: remove disabled --- pkgs/development/python-modules/aiogram/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/python-modules/aiogram/default.nix b/pkgs/development/python-modules/aiogram/default.nix index 1b5bad313f5e..09db1d9520aa 100644 --- a/pkgs/development/python-modules/aiogram/default.nix +++ b/pkgs/development/python-modules/aiogram/default.nix @@ -21,7 +21,6 @@ pytest-asyncio, pytest-lazy-fixture, pytestCheckHook, - pythonOlder, pytz, redis, uvloop, @@ -32,8 +31,6 @@ buildPythonPackage rec { version = "3.23.0"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "aiogram"; repo = "aiogram"; From b9784a369e847226d9c9347c61ae7b1876a508ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Fri, 12 Dec 2025 10:23:13 +0000 Subject: [PATCH 51/63] claude-code: 2.0.65 -> 2.0.67 --- pkgs/by-name/cl/claude-code/package-lock.json | 4 ++-- pkgs/by-name/cl/claude-code/package.nix | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/cl/claude-code/package-lock.json b/pkgs/by-name/cl/claude-code/package-lock.json index 6f68497fc7cd..416c8d3d99b3 100644 --- a/pkgs/by-name/cl/claude-code/package-lock.json +++ b/pkgs/by-name/cl/claude-code/package-lock.json @@ -1,12 +1,12 @@ { "name": "@anthropic-ai/claude-code", - "version": "2.0.65", + "version": "2.0.67", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@anthropic-ai/claude-code", - "version": "2.0.65", + "version": "2.0.67", "license": "SEE LICENSE IN README.md", "bin": { "claude": "cli.js" diff --git a/pkgs/by-name/cl/claude-code/package.nix b/pkgs/by-name/cl/claude-code/package.nix index 41448b6c70d5..43a1a8804239 100644 --- a/pkgs/by-name/cl/claude-code/package.nix +++ b/pkgs/by-name/cl/claude-code/package.nix @@ -11,14 +11,14 @@ }: buildNpmPackage (finalAttrs: { pname = "claude-code"; - version = "2.0.65"; + version = "2.0.67"; src = fetchzip { url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${finalAttrs.version}.tgz"; - hash = "sha256-LcHY7pdnRdeEwtb1Fi/GW6D5Rv3StiKsoXQc3CPDmQw="; + hash = "sha256-a1i8N6LZYA3XJx7AqDDOoyO5pf+t9WZ6vBQVZkUbpxM="; }; - npmDepsHash = "sha256-dJwYMrDILhtE5q06eQL2hfrKn3MuUzgm7FXgyw6+nI8="; + npmDepsHash = "sha256-DNdRkN/rpCsN8fnZbz18r2KRUTl5HCur+GyrofH+T/Y="; postPatch = '' cp ${./package-lock.json} package-lock.json From e3e085bfdcd5a523c2736833ac0edfb2e4bdf78f Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Fri, 12 Dec 2025 12:21:43 +0100 Subject: [PATCH 52/63] qt6.qtvirtualkeyboard: cherry-pick r-b fixes Already merged upstream, but 6.10.2 is some way off still. Should fix #436698 --- .../libraries/qt-6/modules/qtvirtualkeyboard.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/libraries/qt-6/modules/qtvirtualkeyboard.nix b/pkgs/development/libraries/qt-6/modules/qtvirtualkeyboard.nix index 4c9f449f5a19..fe333c4ab623 100644 --- a/pkgs/development/libraries/qt-6/modules/qtvirtualkeyboard.nix +++ b/pkgs/development/libraries/qt-6/modules/qtvirtualkeyboard.nix @@ -5,6 +5,7 @@ qtsvg, hunspell, pkg-config, + fetchpatch, }: qtModule { @@ -16,4 +17,12 @@ qtModule { hunspell ]; nativeBuildInputs = [ pkg-config ]; + patches = [ + # https://qt-project.atlassian.net/browse/QTBUG-137440 + (fetchpatch { + name = "rb-link-core-into-styles.patch"; + url = "https://github.com/qt/qtvirtualkeyboard/commit/0b1e8be8dd874e1fbacd0c30ed5be7342f6cd44d.patch"; + hash = "sha256-Uk6EJOlkCRLUg1w3ljHaxV/dXEVWyUpP/ijoyjptbNc="; + }) + ]; } From 5e225965b854a6ef5c6af5c7902018cb80cbd18b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Dec 2025 11:55:47 +0000 Subject: [PATCH 53/63] beam26Packages.ex_doc: 0.39.2 -> 0.39.3 --- pkgs/development/beam-modules/ex_doc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/beam-modules/ex_doc/default.nix b/pkgs/development/beam-modules/ex_doc/default.nix index 882951a8ee40..0c7ed7bb9daa 100644 --- a/pkgs/development/beam-modules/ex_doc/default.nix +++ b/pkgs/development/beam-modules/ex_doc/default.nix @@ -14,12 +14,12 @@ let pname = "ex_doc"; - version = "0.39.2"; + version = "0.39.3"; src = fetchFromGitHub { owner = "elixir-lang"; repo = "${pname}"; rev = "v${version}"; - hash = "sha256-khQIYS7iHOODlLMwFYPJTVE0MNia/gwYcin9ITpwttY="; + hash = "sha256-LLy4gemj3oiMbZKc9ZUWY3g2fyY1Rvxjtzx/sbAp8JE="; }; in mixRelease { From 1bccf75489991ecacb6d136b1e059304eaf4ca81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Bla=C5=A1kovi=C4=87?= Date: Fri, 12 Dec 2025 12:29:11 +0000 Subject: [PATCH 54/63] zerofs: 0.20.0 -> 0.22.1 --- pkgs/by-name/ze/zerofs/package.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ze/zerofs/package.nix b/pkgs/by-name/ze/zerofs/package.nix index 2361cd1a2b31..c54af266ea04 100644 --- a/pkgs/by-name/ze/zerofs/package.nix +++ b/pkgs/by-name/ze/zerofs/package.nix @@ -11,23 +11,27 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "zerofs"; - version = "0.20.0"; + version = "0.22.1"; src = fetchFromGitHub { owner = "Barre"; repo = "ZeroFS"; tag = "v${finalAttrs.version}"; - hash = "sha256-8iPHIUESModoNFk8XEWjHZOGBOPxhOGM9gHaljWyqZg="; + hash = "sha256-YdqZV8TdodSKP3h2Qa0+Xi7bfGKrtGq625Oco+UjIpU="; }; sourceRoot = "${finalAttrs.src.name}/zerofs"; - cargoHash = "sha256-JZerQne+jW6xjH13dQe3g1dD07BP3j+1DSF+a/SgGXc="; + cargoHash = "sha256-rPa8XmApLClhJ2oAQxEoQL2Hd+8QlJAOZVw+kzS70KY="; nativeBuildInputs = [ cmake ]; buildInputs = [ rust-jemalloc-sys ]; + env = { + RUSTFLAGS = "--cfg tokio_unstable"; + }; + doInstallCheck = true; nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "--version"; From 8c18a0f10f6f4f9b52281ce0e7de1171d642fe02 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Dec 2025 13:08:44 +0000 Subject: [PATCH 55/63] re-isearch: 2.20220925.4.0a-unstable-2025-11-27 -> 2.20220925.4.0a-unstable-2025-12-10 --- pkgs/by-name/re/re-isearch/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/re/re-isearch/package.nix b/pkgs/by-name/re/re-isearch/package.nix index df58a6e17820..a77146ec8962 100644 --- a/pkgs/by-name/re/re-isearch/package.nix +++ b/pkgs/by-name/re/re-isearch/package.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation { pname = "re-Isearch"; - version = "2.20220925.4.0a-unstable-2025-11-27"; + version = "2.20220925.4.0a-unstable-2025-12-10"; src = fetchFromGitHub { owner = "re-Isearch"; repo = "re-Isearch"; - rev = "e782ece4acc1f0011eaca16c099868839d903dc8"; - hash = "sha256-PZnRikX2G815tZAnyKaQXr7+yzazjakQEXjoVMTF55Q="; + rev = "dfd0c39f62d83708b72ebc9332e7029c1d9be5b6"; + hash = "sha256-BGlpXOL5TBui+5OTaxLAsiRCIcp9Rg8J2IFtXn6EeoU="; }; patches = [ From a7363f7a3aa9bfc9c03aa4cea4ad72df4212441d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 11 Dec 2025 15:40:20 +0000 Subject: [PATCH 56/63] warpinator: 2.0.0 -> 2.0.1 https://github.com/linuxmint/warpinator/compare/2.0.0...2.0.1 --- pkgs/by-name/wa/warpinator/package.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/wa/warpinator/package.nix b/pkgs/by-name/wa/warpinator/package.nix index b14378a4a3ca..74e4dabf04db 100644 --- a/pkgs/by-name/wa/warpinator/package.nix +++ b/pkgs/by-name/wa/warpinator/package.nix @@ -30,7 +30,6 @@ let python-xapp zeroconf grpcio - setuptools cryptography pynacl netifaces @@ -43,13 +42,13 @@ let in stdenv.mkDerivation rec { pname = "warpinator"; - version = "2.0.0"; + version = "2.0.1"; src = fetchFromGitHub { owner = "linuxmint"; repo = "warpinator"; rev = version; - hash = "sha256-R6ccyZLXwxvhvRCDguxufzXfVq5tzrPEtBbXgdO6AoI="; + hash = "sha256-HfOxEVzMmZ7lqT6M3sT5FxynqKFQHHmzvHA4Wu4NPr8="; }; nativeBuildInputs = [ From e6293f5aaefa1277d346b27dbebc8d2e96fe3e69 Mon Sep 17 00:00:00 2001 From: K900 Date: Fri, 12 Dec 2025 18:11:24 +0300 Subject: [PATCH 57/63] kdePackages.kwin: backport crash fix recommended by upstream --- pkgs/kde/plasma/kwin/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/kde/plasma/kwin/default.nix b/pkgs/kde/plasma/kwin/default.nix index a7aef2545865..c1532a037c8b 100644 --- a/pkgs/kde/plasma/kwin/default.nix +++ b/pkgs/kde/plasma/kwin/default.nix @@ -17,6 +17,7 @@ pipewire, krunner, python3, + fetchpatch, }: mkKdeDerivation { pname = "kwin"; @@ -25,6 +26,12 @@ mkKdeDerivation { ./0003-plugins-qpa-allow-using-nixos-wrapper.patch ./0001-NixOS-Unwrap-executable-name-for-.desktop-search.patch ./0001-Lower-CAP_SYS_NICE-from-the-ambient-set.patch + + # backport crash fix recommended by upstream + (fetchpatch { + url = "https://invent.kde.org/plasma/kwin/-/commit/ef4504320de2c3a7c7aebcf083d75db361f802ae.diff"; + hash = "sha256-aYUXlpnvtzWd5bJ3Y9NKDBqAg0x+4enaUTnyZiZCB48="; + }) ]; postPatch = '' From 3d89dbb1eece18bf020ed84173f227db853eaebc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Dec 2025 15:20:22 +0000 Subject: [PATCH 58/63] cosmic-reader: 0-unstable-2025-12-05 -> 0-unstable-2025-12-10 --- pkgs/by-name/co/cosmic-reader/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/co/cosmic-reader/package.nix b/pkgs/by-name/co/cosmic-reader/package.nix index 6772080c04d4..2c31b3b31f09 100644 --- a/pkgs/by-name/co/cosmic-reader/package.nix +++ b/pkgs/by-name/co/cosmic-reader/package.nix @@ -19,13 +19,13 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "cosmic-reader"; - version = "0-unstable-2025-12-05"; + version = "0-unstable-2025-12-10"; src = fetchFromGitHub { owner = "pop-os"; repo = "cosmic-reader"; - rev = "7a1f667b6c543d6322a02c9f872ffc053cfd2e3d"; - hash = "sha256-S4F09tb1O0xdAY/6pDPS2yBTVaGdptzclHT3w/kyfE0="; + rev = "4bbbe6ad4346fddbb4b8dccef03f2b96d238c102"; + hash = "sha256-LsnoLpIw1QETB7SK2N4tOrH82MSiDT7WGufE6eCybTU="; }; cargoHash = "sha256-4ofAtZN3FpYwNahinldALbdEJA5lDwa+CUsVIISnSTc="; From 14962bd05dd59cb4a6e02c7aca3fa0e89c42eb84 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Dec 2025 15:42:58 +0000 Subject: [PATCH 59/63] thunderbird-140-unwrapped: 140.5.0esr -> 140.6.0esr --- .../networking/mailreaders/thunderbird/packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird/packages.nix b/pkgs/applications/networking/mailreaders/thunderbird/packages.nix index a39ee4b78846..885111c9af86 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird/packages.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird/packages.nix @@ -100,8 +100,8 @@ rec { thunderbird-140 = common { applicationName = "Thunderbird ESR"; - version = "140.5.0esr"; - sha512 = "ce0d0ab4715831656e6c841d75a69109db6d64b4151ab69ecc954f1d3a045abf64e641e0fa46113cc7f3149bfe237687d4c11de1c14d013ce76e55679cadb1c5"; + version = "140.6.0esr"; + sha512 = "817a807381fa0b5e5e2c3f961931855788649ed596b1c6773ec5b0d6715e90df137ab0f755408a9137b5573169c2e2040bf6a01c4ecdb9a8b010e6c43dbb6381"; updateScript = callPackage ./update.nix { attrPath = "thunderbirdPackages.thunderbird-140"; From ccf906aa4305b59eff3db2415274905f6b9a9645 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Dec 2025 15:51:47 +0000 Subject: [PATCH 60/63] libretro.mame: 0-unstable-2025-11-30 -> 0-unstable-2025-12-06 --- pkgs/applications/emulators/libretro/cores/mame.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/mame.nix b/pkgs/applications/emulators/libretro/cores/mame.nix index 289616f7eb00..41b02897e063 100644 --- a/pkgs/applications/emulators/libretro/cores/mame.nix +++ b/pkgs/applications/emulators/libretro/cores/mame.nix @@ -9,13 +9,13 @@ }: mkLibretroCore { core = "mame"; - version = "0-unstable-2025-11-30"; + version = "0-unstable-2025-12-06"; src = fetchFromGitHub { owner = "libretro"; repo = "mame"; - rev = "872488e6f457edd449bc3eb7554ed1198abcaad8"; - hash = "sha256-K0+uHdd85F5QBPhbV5U438TwVKwNk1NHHBTt5r45EgI="; + rev = "31ea3529faead1fac8d712013290f910fe9863c2"; + hash = "sha256-VoUaixFM26EM7xRI+TYD+f6qTR/yRYcg8XwDst69axE="; fetchSubmodules = true; }; From dc25ff58851a38f315c68e894f051382b16f15c0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Dec 2025 15:51:57 +0000 Subject: [PATCH 61/63] libretro.fbneo: 0-unstable-2025-12-05 -> 0-unstable-2025-12-11 --- pkgs/applications/emulators/libretro/cores/fbneo.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/fbneo.nix b/pkgs/applications/emulators/libretro/cores/fbneo.nix index de020e1844a4..0aaa6b546d63 100644 --- a/pkgs/applications/emulators/libretro/cores/fbneo.nix +++ b/pkgs/applications/emulators/libretro/cores/fbneo.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "fbneo"; - version = "0-unstable-2025-12-05"; + version = "0-unstable-2025-12-11"; src = fetchFromGitHub { owner = "libretro"; repo = "fbneo"; - rev = "db02ef59a64209954b47965ae186ec95cf1da706"; - hash = "sha256-lbtc/3lu+wm19rRt+gT3tHrDaqfZYVXsiHN5Pvm5iM8="; + rev = "a4a563a372b201d8cbac94fb9c50694f6f7137e9"; + hash = "sha256-KQJiwCnaLILy5fgIraTCI0y7eBL14nZnbHa0m8YHq6g="; }; makefile = "Makefile"; From 20a51a91e480631b436cdde2897987487e8aaa7e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Dec 2025 16:11:26 +0000 Subject: [PATCH 62/63] vscode-extensions.sourcegraph.amp: 0.0.1764950983 -> 0.0.1765541481 --- .../editors/vscode/extensions/sourcegraph.amp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/sourcegraph.amp/default.nix b/pkgs/applications/editors/vscode/extensions/sourcegraph.amp/default.nix index 76d4e7c08d93..a1528991e58c 100644 --- a/pkgs/applications/editors/vscode/extensions/sourcegraph.amp/default.nix +++ b/pkgs/applications/editors/vscode/extensions/sourcegraph.amp/default.nix @@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { publisher = "sourcegraph"; name = "amp"; - version = "0.0.1764950983"; - hash = "sha256-ydP5axyMbTt+h/cSuwOsFDj3Lm3sGtEi/ZKQELXzrpo="; + version = "0.0.1765541481"; + hash = "sha256-LE4IsnLa5fI5hdhrrMzqhdomvDa6gMpTPtQ+xkGSyWo="; }; meta = { From 05748b86da6f9cf30cfc60aaf1949cbe6a76fb30 Mon Sep 17 00:00:00 2001 From: networkException Date: Fri, 12 Dec 2025 17:53:48 +0100 Subject: [PATCH 63/63] ungoogled-chromium: 143.0.7499.40-1 -> 143.0.7499.109-1 https://chromereleases.googleblog.com/2025/12/stable-channel-update-for-desktop_10.html This update includes 3 security fixes. Google is aware that an exploit for 466192044 exists in the wild. CVEs: CVE-2025-14372 CVE-2025-14373 --- .../networking/browsers/chromium/info.json | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/info.json b/pkgs/applications/networking/browsers/chromium/info.json index 747d52d51459..c4ec5d483532 100644 --- a/pkgs/applications/networking/browsers/chromium/info.json +++ b/pkgs/applications/networking/browsers/chromium/info.json @@ -813,7 +813,7 @@ } }, "ungoogled-chromium": { - "version": "143.0.7499.40", + "version": "143.0.7499.109", "deps": { "depot_tools": { "rev": "e2bb3cd55899346cc68bbfd5139e59c9d85a6984", @@ -825,16 +825,16 @@ "hash": "sha256-kIPhfuJBQSISdRjloe0N2JrqvuVrEkNijb92/9zSE9I=" }, "ungoogled-patches": { - "rev": "143.0.7499.40-1", - "hash": "sha256-x5Hd9adDj2hb33oiqrUXsXFR+Aza7fE8+m95P6JjKnA=" + "rev": "143.0.7499.109-1", + "hash": "sha256-IiIQqo6U0yqBxamrlQ56FSViQ0mPUoM1yGZkVAur8is=" }, "npmHash": "sha256-HF6B4abJJJ9JDVbovtAdaHIvqE1zHJZ2a+g2Cudx8Pw=" }, "DEPS": { "src": { "url": "https://chromium.googlesource.com/chromium/src.git", - "rev": "c23ff452476d1b6322d73b9b629420ef119d0388", - "hash": "sha256-ujiHFq8I6yENksWhBJ/BYMd5eDdlThfZxMfvDZH9sUo=", + "rev": "71a0dbd6672e2ccb6d1008376cbb7acd315cb8d6", + "hash": "sha256-K7HzC+M7WIMsyB4Wuy04WvGAX+QsTN5daOhkox1wxnA=", "recompress": true }, "src/third_party/clang-format/script": { @@ -904,8 +904,8 @@ }, "src/third_party/angle": { "url": "https://chromium.googlesource.com/angle/angle.git", - "rev": "9b75aecb1fa769e357d1dad2614228b6a04ddee6", - "hash": "sha256-d375qLKzOX3fap5ZjbhPzU/8hWAB9GeT6IWrw3Vedsc=" + "rev": "2dfb5b7603d09c1d06f9d7a894752431d98b9a3e", + "hash": "sha256-3F2K3UO3BHC0mJGUgc/q5AuxwL32O98PloF1cwyZLqU=" }, "src/third_party/angle/third_party/glmark2/src": { "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2", @@ -1069,8 +1069,8 @@ }, "src/third_party/devtools-frontend/src": { "url": "https://chromium.googlesource.com/devtools/devtools-frontend", - "rev": "4190a105897e986349694cae685b51054bf2dc51", - "hash": "sha256-K+bg3OPmv7tN/elOtmlDXwyhC6FxrAEEAY/MqMkQbrU=" + "rev": "e4dd1d1d96b706a33ae7d60237d3cdcd58294e4c", + "hash": "sha256-6to/NYTcx7H5OXF1u6YT55uCHwf8RU1uJaSXvuFsQ/c=" }, "src/third_party/dom_distiller_js/dist": { "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git", @@ -1589,8 +1589,8 @@ }, "src/third_party/webrtc": { "url": "https://webrtc.googlesource.com/src.git", - "rev": "a5751574a386ba0ba80b8c62201977f6aab6c225", - "hash": "sha256-amrKVRN2QsjeDbxkKu0yjAs06U094MHj4ccSJHoVgPE=" + "rev": "1788a81407183acc98163a4e1507c5c63fb175cc", + "hash": "sha256-7FIcH5MG7kNHmN2FE00Qyd1NlfYzb1xKmVDX7MCNyXQ=" }, "src/third_party/wuffs/src": { "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git",