mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
96de272b48
`derivations.cc', etc. * Store the SHA-256 content hash of store paths in the database after they have been built/added. This is so that we can check whether the store has been messed with (a la `rpm --verify'). * When registering path validity, verify that the closure property holds.
8 lines
134 B
C++
8 lines
134 B
C++
#ifndef __DOTGRAPH_H
|
|
#define __DOTGRAPH_H
|
|
|
|
#include "util.hh"
|
|
|
|
void printDotGraph(const PathSet & roots);
|
|
|
|
#endif /* !__DOTGRAPH_H */
|