diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-25T16·43+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-25T16·43+0100 |
commit | 1042c10fd0417fe33dd879317f5d7a73aa6f7fe3 (patch) | |
tree | 32497b429bf45d6338638ec5f20fdcfc48a56c39 /src/libstore/nar-accessor.hh | |
parent | 152b1d6bf9c89b4db9848475e3000821e159d479 (diff) |
Add NAR / Store accessor abstraction
This is primary to allow hydra-queue-runner to extract files like "nix-support/hydra-build-products" from NARs in binary caches.
Diffstat (limited to 'src/libstore/nar-accessor.hh')
-rw-r--r-- | src/libstore/nar-accessor.hh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libstore/nar-accessor.hh b/src/libstore/nar-accessor.hh new file mode 100644 index 000000000000..83c570be4c7b --- /dev/null +++ b/src/libstore/nar-accessor.hh @@ -0,0 +1,11 @@ +#pragma once + +#include "fs-accessor.hh" + +namespace nix { + +/* Return an object that provides access to the contents of a NAR + file. */ +ref<FSAccessor> makeNarAccessor(ref<const std::string> nar); + +} |