diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-07-12 15:26:30 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-07-12 15:40:14 +0000 |
commit | 18152406ce9db9491385f2e67da6f7f78e8d98d5 (patch) | |
tree | ab5d8caa50780fd47805aece9e92f00faea1dc3b /src/libstore/daemon.cc | |
parent | 5d0b75e5b6a1c70203257fecc25743e5a1e009cb (diff) |
String .drv suffix to create derivation name
Diffstat (limited to 'src/libstore/daemon.cc')
-rw-r--r-- | src/libstore/daemon.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/daemon.cc b/src/libstore/daemon.cc index 4cf67064a..2ff53c964 100644 --- a/src/libstore/daemon.cc +++ b/src/libstore/daemon.cc @@ -474,7 +474,7 @@ static void performOp(TunnelLogger * logger, ref<Store> store, case wopBuildDerivation: { auto drvPath = store->parseStorePath(readString(from)); BasicDerivation drv; - readDerivation(from, *store, drv, std::string(drvPath.name())); + readDerivation(from, *store, drv, Derivation::nameFromPath(drvPath)); BuildMode buildMode = (BuildMode) readInt(from); logger->startWork(); if (!trusted) |