nix-gh/src/nix-store/graphml.hh
Antoine Eiche 73c2ae43f0 Add --graphml option to the nix-store --query command
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
2018-10-20 09:48:34 +02:00

12 lines
129 B
C++

#pragma once
#include "types.hh"
namespace nix {
class Store;
void printGraphML(ref<Store> store, const PathSet & roots);
}