vmTools: fix phases

These gave missing attribute errors.  They should have been written as
strings in ae9337179b.

Fixes: ae9337179b ("vm: deprecate phases")
Fixes: 52b10ee872 ("vmTools refactor: don't use huge `with pkgs;`")
This commit is contained in:
Alyssa Ross 2021-12-27 21:44:39 +00:00
parent 812fe6a2b3
commit e0455e1e29
No known key found for this signature in database
GPG key ID: F9DBED4859B271C0

View file

@ -510,7 +510,7 @@ rec {
tarball must contain an RPM specfile. */
buildRPM = attrs: runInLinuxImage (stdenv.mkDerivation ({
prePhases = [ pkgs.prepareImagePhase pkgs.sysInfoPhase ];
prePhases = [ "prepareImagePhase" "sysInfoPhase" ];
dontUnpack = true;
dontConfigure = true;