mirror of
https://github.com/NixOS/nix.git
synced 2025-11-21 09:49:36 +01:00
This is primary to allow hydra-queue-runner to extract files like "nix-support/hydra-build-products" from NARs in binary caches.
11 lines
200 B
C++
11 lines
200 B
C++
#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);
|
|
|
|
}
|