Compare commits

...

14 commits

Author SHA1 Message Date
Ryan Burns
55a15e1f03
[Backport release-26.05] python311.pkgs.pip: fix eval (#538177) 2026-07-06 21:40:43 +00:00
Peder Bergebakken Sundt
736070fcf2
[Backport release-26.05] python3Packages.locust-cloud: disable set of flaky tests (#538270) 2026-07-06 21:17:53 +00:00
Arne Keller
d56e845ed2
[Backport release-26.05] rlottie: 0.2-unstable-2025-10-01 -> 0.2-unstable-2026-07-03 (#539054) 2026-07-06 20:53:41 +00:00
Sandro
e726a48228
[Backport release-26.05] extism-js-core: mark as broken on darwin (#538730) 2026-07-06 20:28:15 +00:00
FliegendeWurst
6962c72f2e rlottie: 0.2-unstable-2025-10-01 -> 0.2-unstable-2026-07-03
Address #528263 on master

(cherry picked from commit d4f1ca8da3)
2026-07-06 19:34:37 +00:00
Jared Baur
b8e319966c
[Backport release-26.05] nvramtool: 26.03 -> 26.06 (#536593) 2026-07-06 16:51:55 +00:00
Toma
49cd7d7ebf
[Backport release-26.05] gopher64: fix build on aarch64-linux (#539006) 2026-07-06 16:41:43 +00:00
TomaSajt
27b2adf0e0 gopher64: fix build on aarch64-linux
(cherry picked from commit 8730cde5de)
2026-07-06 16:21:56 +00:00
nixpkgs-ci[bot]
0f40be3ba0
[Backport release-26.05] vicinae: 0.21.7 -> 0.22.0 (#536075) 2026-07-06 15:15:28 +00:00
Diogo Correia
f29510d730 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 9524d71bd7)
2026-07-05 17:16:00 +00:00
magicquark
f967783fb7 python3Packages.locust-cloud: disable set of flaky tests
(cherry picked from commit bd7a3cd2ac)
2026-07-03 23:16:26 +00:00
Ryan Burns
15061a39c9 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 f961efa543)
2026-07-03 17:49:59 +00:00
R. Ryantm
42b17b7fbf nvramtool: 26.03 -> 26.06
(cherry picked from commit 4a7b2e4a33)
2026-06-29 09:41:09 +00:00
R. Ryantm
15a8dc0f13 vicinae: 0.21.7 -> 0.22.0
(cherry picked from commit 29bf246dd8)
2026-06-27 17:09:04 +00:00
7 changed files with 24 additions and 17 deletions

View file

@ -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";

View file

@ -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 =

View file

@ -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 = [

View file

@ -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 {

View file

@ -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 = {

View file

@ -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

View file

@ -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;