Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5573365dffc9
Choose a base ref
...
head repository: NixOS/nix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 68e0f23edc76
Choose a head ref
  • 2 commits
  • 6 files changed
  • 1 contributor

Commits on Sep 20, 2019

  1. Shut up some warnings

    edolstra committed Sep 20, 2019
    Copy the full SHA
    99e8e58 View commit details
  2. Copy the full SHA
    68e0f23 View commit details
Showing with 25 additions and 6 deletions.
  1. +7 −1 src/libexpr/eval.hh
  2. +4 −3 src/libexpr/flake/flake.cc
  3. +5 −1 src/libexpr/primops/fetchGit.cc
  4. +5 −1 src/libexpr/primops/fetchMercurial.cc
  5. +2 −0 src/libstore/download.hh
  6. +2 −0 src/libstore/fs-accessor.hh
8 changes: 7 additions & 1 deletion src/libexpr/eval.hh
Original file line number Diff line number Diff line change
@@ -377,10 +377,16 @@ struct EvalSettings : Config
"Prefixes of URIs that builtin functions such as fetchurl and fetchGit are allowed to fetch."};

Setting<bool> traceFunctionCalls{this, false, "trace-function-calls",
"Emit log messages for each function entry and exit at the 'vomit' log level (-vvvv)"};
"Emit log messages for each function entry and exit at the 'vomit' log level (-vvvv)."};

Setting<std::string> flakeRegistry{this, "https://raw.githubusercontent.com/NixOS/flake-registry/master/flake-registry.json", "flake-registry",
"Path or URI of the global flake registry."};

Setting<bool> allowDirty{this, true, "allow-dirty",
"Whether to allow dirty Git/Mercurial trees."};

Setting<bool> warnDirty{this, true, "warn-dirty",
"Whether to warn about dirty Git/Mercurial trees."};
};

extern EvalSettings evalSettings;
7 changes: 4 additions & 3 deletions src/libexpr/flake/flake.cc
Original file line number Diff line number Diff line change
@@ -480,9 +480,10 @@ ResolvedFlake resolveFlake(EvalState & state, const FlakeRef & topRef, HandleLoc
if (!(lockFile == oldLockFile)) {
if (allowedToWrite(handleLockFile)) {
if (auto refData = std::get_if<FlakeRef::IsPath>(&topRef.data)) {
if (lockFile.isDirty())
warn("will not write lock file of flake '%s' because it has a dirty input", topRef);
else {
if (lockFile.isDirty()) {
if (evalSettings.warnDirty)
warn("will not write lock file of flake '%s' because it has a dirty input", topRef);
} else {
lockFile.write(refData->path + (topRef.subdir == "" ? "" : "/" + topRef.subdir) + "/flake.lock");

// Hack: Make sure that flake.lock is visible to Git, so it ends up in the Nix store.
6 changes: 5 additions & 1 deletion src/libexpr/primops/fetchGit.cc
Original file line number Diff line number Diff line change
@@ -47,7 +47,11 @@ GitInfo exportGit(ref<Store> store, std::string uri,
/* This is an unclean working tree. So copy all tracked
files. */

warn("Git tree '%s' is dirty", uri);
if (!evalSettings.allowDirty)
throw Error("Git tree '%s' is dirty", uri);

if (evalSettings.warnDirty)
warn("Git tree '%s' is dirty", uri);

GitInfo gitInfo;
gitInfo.ref = "HEAD";
6 changes: 5 additions & 1 deletion src/libexpr/primops/fetchMercurial.cc
Original file line number Diff line number Diff line change
@@ -36,7 +36,11 @@ HgInfo exportMercurial(ref<Store> store, const std::string & uri,
/* This is an unclean working tree. So copy all tracked
files. */

printTalkative("copying unclean Mercurial working tree '%s'", uri);
if (!evalSettings.allowDirty)
throw Error("Mercurial tree '%s' is unclean", uri);

if (evalSettings.warnDirty)
warn("Mercurial tree '%s' is unclean", uri);

HgInfo hgInfo;
hgInfo.rev = "0000000000000000000000000000000000000000";
2 changes: 2 additions & 0 deletions src/libstore/download.hh
Original file line number Diff line number Diff line change
@@ -94,6 +94,8 @@ class Store;

struct Downloader
{
virtual ~Downloader() { }

/* Enqueue a download request, returning a future to the result of
the download. The future may throw a DownloadError
exception. */
2 changes: 2 additions & 0 deletions src/libstore/fs-accessor.hh
Original file line number Diff line number Diff line change
@@ -19,6 +19,8 @@ public:
uint64_t narOffset = 0; // regular files only
};

virtual ~FSAccessor() { }

virtual Stat stat(const Path & path) = 0;

virtual StringSet readDirectory(const Path & path) = 0;