aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libexpr/primops/fetchgit.cc20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/libexpr/primops/fetchgit.cc b/src/libexpr/primops/fetchgit.cc
index 3e4ece2cf..1ac9b364f 100644
--- a/src/libexpr/primops/fetchgit.cc
+++ b/src/libexpr/primops/fetchgit.cc
@@ -2,6 +2,7 @@
#include "eval-inline.hh"
#include "download.hh"
#include "store-api.hh"
+#include "pathlocks.hh"
namespace nix {
@@ -28,7 +29,18 @@ Path exportGit(ref<Store> store, const std::string & uri, const std::string & re
unlink(localRefFile.c_str());
- debug(format("got revision ‘%s’") % commitHash);
+ printTalkative("using revision %s of repo ‘%s’", uri, commitHash);
+
+ Path storeLink = cacheDir + "/" + commitHash + ".link";
+ PathLocks storeLinkLock({storeLink}, fmt("waiting for lock on ‘%1%’...", storeLink));
+
+ if (pathExists(storeLink)) {
+ auto storePath = readLink(storeLink);
+ store->addTempRoot(storePath);
+ if (store->isValidPath(storePath)) {
+ return storePath;
+ }
+ }
// FIXME: should pipe this, or find some better way to extract a
// revision.
@@ -39,7 +51,11 @@ Path exportGit(ref<Store> store, const std::string & uri, const std::string & re
runProgram("tar", true, { "x", "-C", tmpDir }, tar);
- return store->addToStore("git-export", tmpDir);
+ auto storePath = store->addToStore("git-export", tmpDir);
+
+ replaceSymlink(storePath, storeLink);
+
+ return storePath;
}
static void prim_fetchgit(EvalState & state, const Pos & pos, Value * * args, Value & v)