Avoid top-level `with ...;` in pkgs/build-support/vm/test.nix

authored by philiptaron.tngl.sh and committed by Valentin Gagarin 102a33d3 f36441db

+18 -2
+18 -2
pkgs/build-support/vm/test.nix
··· 1 - with import ../../.. { }; 2 - with vmTools; 1 + let 2 + pkgs = import ../../.. { }; 3 + 4 + inherit (pkgs) 5 + hello 6 + patchelf 7 + pcmanfm 8 + stdenv 9 + ; 10 + 11 + inherit (pkgs.vmTools) 12 + buildRPM 13 + diskImages 14 + makeImageTestScript 15 + runInLinuxImage 16 + runInLinuxVM 17 + ; 18 + in 3 19 4 20 { 5 21