mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
a3883cbd28
size of the NAR serialisation of the path, i.e., `nix-store --dump PATH'). This is useful for Hydra.
14 lines
232 B
C++
14 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 */
|