about summary refs log tree commit diff
path: root/release.nix
diff options
context:
space:
mode:
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/release.nix b/release.nix
index 46e1edf2..e55b45fa 100644
--- a/release.nix
+++ b/release.nix
@@ -40,8 +40,9 @@ let
   mpath = if vuizvuiSrc == null then ./machines else "${vuizvui}/machines";
 
   allMachines = with pkgsUpstream.lib; let
-    wrapPkgs = machine: machine.withPkgsPath nixpkgs;
-  in mapAttrsRecursiveCond (m: !(m ? eval)) (const wrapPkgs) (import mpath);
+    wrapPkgs = machine: machine.__withPkgsPath nixpkgs;
+    condition = m: !(m ? __withPkgsPath);
+  in mapAttrsRecursiveCond condition (const wrapPkgs) (import mpath);
 
   allTests = with import ./lib; getVuizvuiTests ({
     inherit system nixpkgs;