mirror of
https://github.com/NixOS/nix.git
synced 2025-12-03 07:31:00 +01:00
Introduces a reusable directed graph template built on Boost Graph Library (BGL) to provide graph operations for store path dependency analysis. This will be used by `nix why-depends` and future cycle detection.
10 lines
281 B
C++
10 lines
281 B
C++
#include "nix/store/dependency-graph-impl.hh"
|
|
|
|
namespace nix {
|
|
|
|
// Explicit instantiations for common types
|
|
template class DependencyGraph<StorePath>;
|
|
template class DependencyGraph<std::string>;
|
|
template class DependencyGraph<StorePath, FileListEdgeProperty>;
|
|
|
|
} // namespace nix
|