From e317c4d283e4cf784c49900908f4639df00a4459 Mon Sep 17 00:00:00 2001 From: Adam Dinwoodie Date: Sat, 8 Nov 2025 20:14:40 +0000 Subject: [PATCH] nixosTests: fix evaluation errors Pass lib to NixOS test functions that need it following 03bb7d81954d (all-packages: do not export lib functions from pkgs, 2025-10-30) / #455775. --- nixos/tests/all-tests.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 80b652004d52..15f15e2fc212 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -818,7 +818,10 @@ in ksm = runTest ./ksm.nix; kthxbye = runTest ./kthxbye.nix; kubernetes = handleTestOn [ "x86_64-linux" ] ./kubernetes { }; - kubo = import ./kubo { inherit runTest; }; + kubo = import ./kubo { + inherit runTest; + inherit (pkgs) lib; + }; lact = runTest ./lact.nix; ladybird = runTest ./ladybird.nix; languagetool = runTest ./languagetool.nix; @@ -963,7 +966,10 @@ in mopidy = runTest ./mopidy.nix; morph-browser = runTest ./morph-browser.nix; mosquitto = runTest ./mosquitto.nix; - movim = import ./web-apps/movim { inherit runTest; }; + movim = import ./web-apps/movim { + inherit runTest; + inherit (pkgs) lib; + }; mpd = runTest ./mpd.nix; mpv = runTest ./mpv.nix; mtp = runTest ./mtp.nix;