1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-03 07:31:00 +01:00
nix/src/libstore/dependency-graph.cc
Bernardo Meurer Costa 13da1ca6d5
refactor(libstore): add BGL-based dependency graph for path analysis
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.
2025-10-28 05:47:44 +00:00

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