Commit e317c4d2 authored by Adam Dinwoodie's avatar Adam Dinwoodie
Browse files

nixosTests: fix evaluation errors

Pass lib to NixOS test functions that need it following 03bb7d81
(all-packages: do not export lib functions from pkgs, 2025-10-30)
/ #455775.
parent b6dff13a
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -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;