From 15a8dc0f13ecffdaf4160ff8216f8571f7486608 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 27 Jun 2026 15:53:02 +0000 Subject: [PATCH 1/7] vicinae: 0.21.7 -> 0.22.0 (cherry picked from commit 29bf246dd82ba1b7107b3c2ca893efb8e147ccf0) --- pkgs/by-name/vi/vicinae/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/vi/vicinae/package.nix b/pkgs/by-name/vi/vicinae/package.nix index d90d2b4f3b8f..fd0dc8d39cfe 100644 --- a/pkgs/by-name/vi/vicinae/package.nix +++ b/pkgs/by-name/vi/vicinae/package.nix @@ -21,13 +21,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "vicinae"; - version = "0.21.7"; + version = "0.22.0"; src = fetchFromGitHub { owner = "vicinaehq"; repo = "vicinae"; tag = "v${finalAttrs.version}"; - hash = "sha256-r4BuhKyW4sxin0YG3/EJjed/MiP5NwN7QGiM1ySozjE="; + hash = "sha256-f1d88cdqe1PfeuzY90JIRCoHKLV1Uuakc4TpSNvNBKA="; }; apiDeps = fetchNpmDeps { From 42b17b7fbfac7af16b01f92a985f296f12e9b24d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 26 Jun 2026 12:28:51 +0000 Subject: [PATCH 2/7] nvramtool: 26.03 -> 26.06 (cherry picked from commit 4a7b2e4a335f4d53f1f625e205b492f14118a865) --- pkgs/tools/misc/coreboot-utils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/coreboot-utils/default.nix b/pkgs/tools/misc/coreboot-utils/default.nix index 0c0969c71f1e..2299dc508689 100644 --- a/pkgs/tools/misc/coreboot-utils/default.nix +++ b/pkgs/tools/misc/coreboot-utils/default.nix @@ -17,7 +17,7 @@ }: let - version = "26.03"; + version = "26.06"; commonMeta = { description = "Various coreboot-related tools"; @@ -47,7 +47,7 @@ let src = fetchgit { url = "https://review.coreboot.org/coreboot"; rev = finalAttrs.version; - hash = "sha256-gaJ9AP7g0KxOzZfg1dyNatC8/pl83pypeq5Lg+Qp1ys="; + hash = "sha256-rL9txaDXUzjkC2ioYmunoNq2+9rz9wpEJ7z3GZrqOH4="; }; enableParallelBuilding = true; From 15061a39c958771308a39168ae6029b179c860d9 Mon Sep 17 00:00:00 2001 From: Ryan Burns Date: Thu, 2 Jul 2026 15:25:01 -0700 Subject: [PATCH 3/7] python311.pkgs.pip: fix eval Sphinx bumped their minimum supported python from 3.11 to 3.12, but this condition wasn't updated in the pip package accordingly. Instead of just bumping here, let's reuse the sphinx.disabled condition so that we don't need to worry about it in the future. (cherry picked from commit f961efa543454e1b71efae733c4196d6558d6c3a) --- pkgs/development/python-modules/pip/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pip/default.nix b/pkgs/development/python-modules/pip/default.nix index 456baee0136e..405f18f475ab 100644 --- a/pkgs/development/python-modules/pip/default.nix +++ b/pkgs/development/python-modules/pip/default.nix @@ -29,6 +29,9 @@ }: let + + sphinxSupported = !sphinx.disabled; + self = buildPythonPackage rec { pname = "pip"; version = "25.3"; @@ -51,9 +54,8 @@ let flit-core installShellFiles ] - ++ lib.optionals (pythonAtLeast "3.11") [ + ++ lib.optionals sphinxSupported [ # docs - # (sphinx requires Python 3.11) sphinx sphinx-issues ]; @@ -61,13 +63,13 @@ let outputs = [ "out" ] - ++ lib.optionals (pythonAtLeast "3.11") [ + ++ lib.optionals sphinxSupported [ "man" ]; # pip uses a custom sphinx extension and unusual conf.py location, mimic the internal build rather than attempting # to fit sphinxHook see https://github.com/pypa/pip/blob/0778c1c153da7da457b56df55fb77cbba08dfb0c/noxfile.py#L129-L148 - postBuild = lib.optionalString (pythonAtLeast "3.11") '' + postBuild = lib.optionalString sphinxSupported '' cd docs # remove references to sphinx extentions only required for html doc generation From f967783fb70618f51b7eac28228443e3b58890ac Mon Sep 17 00:00:00 2001 From: magicquark <198001825+magicquark@users.noreply.github.com> Date: Fri, 26 Jun 2026 12:04:37 +0100 Subject: [PATCH 4/7] python3Packages.locust-cloud: disable set of flaky tests (cherry picked from commit bd7a3cd2ac4f4dc3e45948bc5505e55f578c1a4a) --- pkgs/development/python-modules/locust-cloud/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/locust-cloud/default.nix b/pkgs/development/python-modules/locust-cloud/default.nix index 13763e3ecb5d..dce2b9aa76cb 100644 --- a/pkgs/development/python-modules/locust-cloud/default.nix +++ b/pkgs/development/python-modules/locust-cloud/default.nix @@ -58,17 +58,13 @@ buildPythonPackage rec { export LOCUSTCLOUD_PASSWORD=dummy ''; - disabledTests = [ - # AssertionError - "test_recursive_imports" - "test_from_import_file" - ]; - disabledTestPaths = [ # Tests require network access "tests/web_login_test.py" "tests/cloud_test.py" "tests/websocket_test.py" + # AssertionError + "tests/import_finder_test.py" ]; meta = { From f29510d7306acace793d46cc4632bd81c2f70e40 Mon Sep 17 00:00:00 2001 From: Diogo Correia Date: Mon, 8 Jun 2026 12:17:50 +0100 Subject: [PATCH 5/7] extism-js-core: mark as broken on darwin Build fails due to a linking error: "ld: library not found for -liconv". (cherry picked from commit 9524d71bd77c4022ed7d1329344e6870f1155851) --- pkgs/by-name/ex/extism-js-core/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/ex/extism-js-core/package.nix b/pkgs/by-name/ex/extism-js-core/package.nix index f3942d3a1e6d..6b6963677b9e 100644 --- a/pkgs/by-name/ex/extism-js-core/package.nix +++ b/pkgs/by-name/ex/extism-js-core/package.nix @@ -79,6 +79,9 @@ rustPlatform.buildRustPackage (finalAttrs: { __structuredAttrs = true; meta = { + # Fails to build on darwin due to libiconv linking failure (ld: library not found for -liconv) + # See https://github.com/NixOS/nixpkgs/pull/523442 for a (failed) attempt at fixing the issue + broken = stdenv.buildPlatform.isDarwin; changelog = "https://github.com/extism/js-pdk/releases/tag/${finalAttrs.src.tag}"; description = "Write Extism plugins in JavaScript & TypeScript (WASM core)"; homepage = "https://github.com/extism/js-pdk"; From 27b2adf0e070396f8c9d6c4ea8f756250a88a366 Mon Sep 17 00:00:00 2001 From: TomaSajt <62384384+TomaSajt@users.noreply.github.com> Date: Mon, 6 Jul 2026 16:38:51 +0200 Subject: [PATCH 6/7] gopher64: fix build on aarch64-linux (cherry picked from commit 8730cde5de8da7cbbec6deb7affe750f634a88ee) --- pkgs/by-name/go/gopher64/package.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/by-name/go/gopher64/package.nix b/pkgs/by-name/go/gopher64/package.nix index 023bdd0b0f95..abb9740accc7 100644 --- a/pkgs/by-name/go/gopher64/package.nix +++ b/pkgs/by-name/go/gopher64/package.nix @@ -56,6 +56,12 @@ rustPlatform.buildRustPackage.override { inherit stdenv; } (finalAttrs: { cargoHash = "sha256-rmt2b8lk/9ts8v33yguuSFcbFvUX00icg1onmhCbDTQ="; + # don't use lld on aarch64-linux + postPatch = '' + substituteInPlace .cargo/config.toml \ + --replace-fail 'rustflags = ["-C", "link-arg=-fuse-ld=lld"]' "" + ''; + env = { # See pkgs/by-name/ne/neovide/package.nix SKIA_SOURCE_DIR = From 6962c72f2e397b4cdeeca721c41c804dbfa41fdc Mon Sep 17 00:00:00 2001 From: FliegendeWurst Date: Mon, 6 Jul 2026 11:50:35 +0200 Subject: [PATCH 7/7] rlottie: 0.2-unstable-2025-10-01 -> 0.2-unstable-2026-07-03 Address #528263 on master (cherry picked from commit d4f1ca8da3958ded89d748fff18b2125f18b7029) --- pkgs/by-name/rl/rlottie/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/rl/rlottie/package.nix b/pkgs/by-name/rl/rlottie/package.nix index af12470f0f6f..f1c415592b5c 100644 --- a/pkgs/by-name/rl/rlottie/package.nix +++ b/pkgs/by-name/rl/rlottie/package.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation { pname = "rlottie"; - version = "0.2-unstable-2025-10-01"; + version = "0.2-unstable-2026-07-03"; src = fetchFromGitHub { owner = "Samsung"; repo = "rlottie"; - rev = "671c561130ead1c6e44805a7ec1263573a3440fd"; - hash = "sha256-od3zatv4ZxUIoLkwy0TT8lAsDcjoPS4plci+ZDyz34Y="; + rev = "f487eff2f8086b84ae1c7faa0418abec909e874b"; + hash = "sha256-/Sv5qX1V6VltJN0+bkKU2utaj8Yw1owb0KjJFWv41Js="; }; nativeBuildInputs = [