3
0
Fork 0
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:
Alyssa Ross 2023-08-23 12:25:34 +00:00
parent e7514bb7a8
commit 2d66a9db22
No known key found for this signature in database
GPG key ID: F9DBED4859B271C0

View file

@ -519,4 +519,4 @@ in mapAttrs (mkVBoxTest false vboxVMs) {
destroy_vm_test1()
destroy_vm_test2()
'';
} // (lib.optionalAttrs enableUnfree unfreeTests)
} // (optionalAttrs enableUnfree unfreeTests)