aboutsummaryrefslogtreecommitdiff
path: root/src/libfetchers/fetchers.cc
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2021-07-05 13:09:46 +0200
committerregnat <rg@regnat.ovh>2021-07-06 08:41:52 +0200
commit83615fcf8fe6095b60e33097e2d15fb1a3f56298 (patch)
tree0c0a3cf96149773b5e5ba97203d6235e5dc5ab24 /src/libfetchers/fetchers.cc
parentf9d72855ae8878cdd3f892674c29dc1fc7616cbc (diff)
Allow `fetchGit` to take a `name` argument
Fix #3388
Diffstat (limited to 'src/libfetchers/fetchers.cc')
-rw-r--r--src/libfetchers/fetchers.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/libfetchers/fetchers.cc b/src/libfetchers/fetchers.cc
index 916e0a8e8..e158d914b 100644
--- a/src/libfetchers/fetchers.cc
+++ b/src/libfetchers/fetchers.cc
@@ -200,12 +200,17 @@ void Input::markChangedFile(
return scheme->markChangedFile(*this, file, commitMsg);
}
+std::string Input::getName() const
+{
+ return maybeGetStrAttr(attrs, "name").value_or("source");
+}
+
StorePath Input::computeStorePath(Store & store) const
{
auto narHash = getNarHash();
if (!narHash)
throw Error("cannot compute store path for mutable input '%s'", to_string());
- return store.makeFixedOutputPath(FileIngestionMethod::Recursive, *narHash, "source");
+ return store.makeFixedOutputPath(FileIngestionMethod::Recursive, *narHash, getName());
}
std::string Input::getType() const