mirror of
https://github.com/NixOS/nix.git
synced 2025-11-16 07:22:43 +01:00
This prints the references graph of the store paths in the graphML format [1]. The graphML format is supported by several graph tools such as the Python Networkx library or the Apache Thinkerpop project. [1] http://graphml.graphdrawing.org
11 lines
129 B
C++
11 lines
129 B
C++
#pragma once
|
|
|
|
#include "types.hh"
|
|
|
|
namespace nix {
|
|
|
|
class Store;
|
|
|
|
void printGraphML(ref<Store> store, const PathSet & roots);
|
|
|
|
}
|