diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-19 14:47:10 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-19 14:47:10 +0000 |
commit | 237d88c97e1f08f8c1513261ac5fea847d5917ff (patch) | |
tree | 52b3e111b17395b5de1247ed4c37e093f85b48f2 /src/nix | |
parent | 517f5980e2c63af47e7042873cc33b521918ad35 (diff) |
FileSystemHash -> DerivationOutputHash
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/develop.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/develop.cc b/src/nix/develop.cc index 8abb710c2..0845c65fa 100644 --- a/src/nix/develop.cc +++ b/src/nix/develop.cc @@ -137,7 +137,7 @@ 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 { + .hash = DerivationOutputHash { FileIngestionMethod::Flat, Hash { } }, }); |