diff options
Diffstat (limited to 'src/libutil/archive.cc')
-rw-r--r-- | src/libutil/archive.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libutil/archive.cc b/src/libutil/archive.cc index 25deccc09c15..32c75fee5d40 100644 --- a/src/libutil/archive.cc +++ b/src/libutil/archive.cc @@ -12,6 +12,9 @@ #include "util.hh" +namespace nix { + + static string archiveVersion1 = "nix-archive-1"; @@ -319,3 +322,5 @@ void restorePath(const Path & path, RestoreSource & source) restore(path, source); } + +} |