diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-10-03T19·09-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-10-03T19·09-0400 |
commit | 0a7084567fc4e7d077863075a7ea1bb82d843341 (patch) | |
tree | 4868d450da1e153b0660eede85105cb2b14d0859 /src/libexpr/eval.hh | |
parent | a807edfae8428bf426ee6ae849a7a24d74d39202 (diff) |
Add a ‘--repair’ flag to nix-instantiate
This allows repairing corrupted derivations and other source files.
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index a1f26a0566d1..a3c55a38860f 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -95,6 +95,10 @@ public: const Symbol sWith, sOutPath, sDrvPath, sType, sMeta, sName, sSystem, sOverrides; + /* If set, force copying files to the Nix store even if they + already exist there. */ + bool repair; + private: SrcToStore srcToStore; |