forked from lix-project/lix
a3883cbd28
size of the NAR serialisation of the path, i.e., `nix-store --dump PATH'). This is useful for Hydra.
15 lines
232 B
C++
15 lines
232 B
C++
#ifndef __REFERENCES_H
|
|
#define __REFERENCES_H
|
|
|
|
#include "types.hh"
|
|
#include "hash.hh"
|
|
|
|
namespace nix {
|
|
|
|
PathSet scanForReferences(const Path & path, const PathSet & refs,
|
|
HashResult & hash);
|
|
|
|
}
|
|
|
|
#endif /* !__REFERENCES_H */
|