Merge pull request #4515 from matthewbauer/fix-nix-profile-install-first-output

Use derivation output name from toDerivation
This commit is contained in:
Eelco Dolstra
2021-02-05 12:19:10 +01:00
committed by GitHub
+1 -1
View File
@@ -249,7 +249,7 @@ struct CmdProfileInstall : InstallablesCommand, MixDefaultProfile
attrPath,
};
pathsToBuild.push_back({drv.drvPath, StringSet{"out"}}); // FIXME
pathsToBuild.push_back({drv.drvPath, StringSet{drv.outputName}});
manifest.elements.emplace_back(std::move(element));
} else {