12struct NarInfo : ValidPathInfo
15 std::string compression;
16 std::optional<Hash> fileHash;
17 uint64_t fileSize = 0;
21 : ValidPathInfo(store, std::move(name), std::move(
ca),
narHash)
24 NarInfo(
const ValidPathInfo & info) : ValidPathInfo(info) { }
25 NarInfo(
const Store & store,
const std::string_view & s,
const std::string_view & whence);
27 std::string to_string(
const Store & store)
const;
Definition content-address.hh:242