diff options
Diffstat (limited to 'src/nix/develop.cc')
-rw-r--r-- | src/nix/develop.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nix/develop.cc b/src/nix/develop.cc index 8abb710c2..037987313 100644 --- a/src/nix/develop.cc +++ b/src/nix/develop.cc @@ -137,8 +137,9 @@ StorePath getDerivationEnvironment(ref<Store> store, const StorePath & drvPath) auto shellOutPath = store->makeOutputPath("out", h, drvName); drv.outputs.insert_or_assign("out", DerivationOutput { .path = shellOutPath, - .hash = FileSystemHash { - FileIngestionMethod::Flat, Hash { } + .hash = FixedOutputHash { + .method = FileIngestionMethod::Flat, + .hash = Hash { }, }, }); drv.env["out"] = store->printStorePath(shellOutPath); |