Nix dependency GraphVis
Generate graph for all dependencies with:
$ nix-store -q --find-file /nix/store/* > graph.dot
Or for specific dependency with:
$ nix-store -q --graph /nix/store/{root package} > graph.dot
digraph G {a -> b; a -> x; a -> C; C -> d}
Generate Graph