Slightly questionable workaround for #2342

This commit is contained in:
Eelco Dolstra 2018-08-10 11:34:41 +02:00
parent ada4e90267
commit f72c907ad8
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ struct InstallableStorePath : Installable
Buildables toBuildables() override
{
return {{"", {{"out", storePath}}}};
return {{isDerivation(storePath) ? storePath : "", {{"out", storePath}}}};
}
};