aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/derivations.cc
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-09-30 00:41:18 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-09-30 00:41:18 +0000
commitb7597016529cebdc3c9432a101c1f8d9227713cc (patch)
tree90711f574d7a64845e2f9dc2bdf3e0d80a49eab9 /src/libstore/derivations.cc
parent45a0ed82f089158a79c8c25ef844c55e4a74fc35 (diff)
nix::worker_proto -> worker_proto
Diffstat (limited to 'src/libstore/derivations.cc')
-rw-r--r--src/libstore/derivations.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/derivations.cc b/src/libstore/derivations.cc
index f8e7d773b..7ffc94818 100644
--- a/src/libstore/derivations.cc
+++ b/src/libstore/derivations.cc
@@ -584,7 +584,7 @@ Source & readDerivation(Source & in, const Store & store, BasicDerivation & drv,
drv.outputs.emplace(std::move(name), std::move(output));
}
- drv.inputSrcs = nix::worker_proto::read(store, in, Phantom<StorePathSet> {});
+ drv.inputSrcs = worker_proto::read(store, in, Phantom<StorePathSet> {});
in >> drv.platform >> drv.builder;
drv.args = readStrings<Strings>(in);
@@ -622,7 +622,7 @@ void writeDerivation(Sink & out, const Store & store, const BasicDerivation & dr
},
}, i.second.output);
}
- nix::worker_proto::write(store, out, drv.inputSrcs);
+ worker_proto::write(store, out, drv.inputSrcs);
out << drv.platform << drv.builder << drv.args;
out << drv.env.size();
for (auto & i : drv.env)