diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-11-21 13:12:02 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-11-21 16:26:43 +0100 |
commit | 8fb583714f78d1b283523ef7edbb6e098946182f (patch) | |
tree | 13db949dd4869d2c8b41a3a1ce0a28f9bacbb860 /guix/scripts/system.scm | |
parent | 1b933e62dcc8521e383a78e5d7952a194e47a4ec (diff) | |
download | gnu-guix-8fb583714f78d1b283523ef7edbb6e098946182f.tar gnu-guix-8fb583714f78d1b283523ef7edbb6e098946182f.tar.gz |
Add (guix graph).
* guix/scripts/graph.scm (<node-type>, <graph-backend>, emit-prologue)
(emit-epilogue, emit-node, emit-edge, %graphviz-backend, export-graph):
Move to...
* guix/graph.scm: ... here. New file.
* guix/scripts/system.scm, tests/graph.scm: Use it.
* Makefile.am (MODULES): Add it.
Diffstat (limited to 'guix/scripts/system.scm')
-rw-r--r-- | guix/scripts/system.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index 0d54d453db..1407dc73fa 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -29,6 +29,7 @@ #:use-module (guix profiles) #:use-module (guix scripts) #:use-module (guix scripts build) + #:use-module (guix graph) #:use-module (guix scripts graph) #:use-module (guix build utils) #:use-module (gnu build install) |