diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-09-03 15:03:33 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-09-07 11:40:22 +0200 |
commit | bd7470185bae15e686c2b2a83d3f61807e6fa527 (patch) | |
tree | e0e42c0a5c9be1993dea5622d5e6bb7464d1f757 /guix/scripts/pull.scm | |
parent | ee94cfeb99a7e3879c92ca21318960077ce4100e (diff) | |
download | gnu-guix-bd7470185bae15e686c2b2a83d3f61807e6fa527.tar gnu-guix-bd7470185bae15e686c2b2a83d3f61807e6fa527.tar.gz |
Add 'guix describe'.
* guix/scripts/describe.scm: New file.
* Makefile.am (MODULES): Add it.
(SH_TESTS): Add tests/guix-describe.sh.
* po/guix/POTFILES.in: Add it.
* guix/scripts/pull.scm (display-profile-content): Export.
* guix/describe.scm (current-profile, current-profile-entries): Export.
* tests/guix-describe.sh: New file.
* doc/guix.texi (Features): Mention 'guix pull' and provenance tracking.
(Invoking guix pull): Link to 'guix describe'.
(Channels): Likewise.
(Invoking guix describe): New node.
Diffstat (limited to 'guix/scripts/pull.scm')
-rw-r--r-- | guix/scripts/pull.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/scripts/pull.scm b/guix/scripts/pull.scm index ebc5dc9b13..976e054a84 100644 --- a/guix/scripts/pull.scm +++ b/guix/scripts/pull.scm @@ -48,7 +48,8 @@ #:use-module (srfi srfi-37) #:use-module (ice-9 match) #:use-module (ice-9 vlist) - #:export (guix-pull)) + #:export (display-profile-content + guix-pull)) ;;; |