forked from mirrors/nixpkgs
nixosTests.virtualbox: fix eval
There's no "lib" in scope here. The test uses "with pkgs.lib;", so
this failed to evaluate.
Fixes: 6672dde558
("treewide: use optionalAttrs instead of 'else {}'")
This commit is contained in:
parent
e7514bb7a8
commit
2d66a9db22
|
@ -519,4 +519,4 @@ in mapAttrs (mkVBoxTest false vboxVMs) {
|
|||
destroy_vm_test1()
|
||||
destroy_vm_test2()
|
||||
'';
|
||||
} // (lib.optionalAttrs enableUnfree unfreeTests)
|
||||
} // (optionalAttrs enableUnfree unfreeTests)
|
||||
|
|
Loading…
Reference in a new issue