aboutsummaryrefslogtreecommitdiff
path: root/src/nix-store
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-07-12 15:26:30 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-07-12 15:40:14 +0000
commit18152406ce9db9491385f2e67da6f7f78e8d98d5 (patch)
treeab5d8caa50780fd47805aece9e92f00faea1dc3b /src/nix-store
parent5d0b75e5b6a1c70203257fecc25743e5a1e009cb (diff)
String .drv suffix to create derivation name
Diffstat (limited to 'src/nix-store')
-rw-r--r--src/nix-store/nix-store.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index 39a47e19a..9605e4b32 100644
--- a/src/nix-store/nix-store.cc
+++ b/src/nix-store/nix-store.cc
@@ -916,7 +916,7 @@ static void opServe(Strings opFlags, Strings opArgs)
auto drvPath = store->parseStorePath(readString(in));
BasicDerivation drv;
- readDerivation(in, *store, drv, std::string(drvPath.name()));
+ readDerivation(in, *store, drv, Derivation::nameFromPath(drvPath));
getBuildSettings();