Skip to content

Commit 5d43cdb

Browse files
committedApr 21, 2021
Make nix shell fallback to static outputs when needed
In case of pure input-addressed derivations, the build loop doesn't guaranty that the realisations are stored in the db (if the output paths are already there or can be substituted, the realisations won't be registered). This caused `nix shell` to fail in some cases because it was assuming that the realisations were always existing. A better (but more involved) fix would probably to ensure that we always register the realisations, but in the meantime this patches the surface issue. Fix #4721
1 parent 8d651a1 commit 5d43cdb

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed
 

‎src/libcmd/installables.cc

+8-3
Original file line numberDiff line numberDiff line change
@@ -736,9 +736,14 @@ std::set<RealisedPath> toRealisedPaths(
736736
output.first);
737737
auto outputId = DrvOutput{outputHashes.at(output.first), output.first};
738738
auto realisation = store->queryRealisation(outputId);
739-
if (!realisation)
740-
throw Error("cannot operate on an output of unbuilt content-addresed derivation '%s'", outputId.to_string());
741-
res.insert(RealisedPath{*realisation});
739+
if (!realisation) {
740+
if (output.second)
741+
res.insert(*output.second);
742+
else
743+
throw Error("cannot operate on an output of unbuilt content-addresed derivation '%s'", outputId.to_string());
744+
} else {
745+
res.insert(RealisedPath{*realisation});
746+
}
742747
}
743748
else {
744749
// If ca-derivations isn't enabled, behave as if

0 commit comments

Comments
 (0)