1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libstore/nar-info.hh

28 lines
605 B
C++
Raw Normal View History

#pragma once
#include "types.hh"
#include "hash.hh"
2020-08-06 14:31:48 -04:00
#include "path-info.hh"
namespace nix {
2020-08-06 14:31:48 -04:00
class Store;
struct NarInfo : ValidPathInfo
{
std::string url;
std::string compression;
2020-06-19 16:50:28 -04:00
std::optional<Hash> fileHash;
uint64_t fileSize = 0;
std::string system;
NarInfo() = delete;
2020-08-06 14:31:48 -04:00
NarInfo(StorePath && path, Hash narHash) : ValidPathInfo(std::move(path), narHash) { }
NarInfo(const ValidPathInfo & info) : ValidPathInfo(info) { }
NarInfo(const Store & store, const std::string & s, const std::string & whence);
std::string to_string(const Store & store) const;
};
}