diff options
author | Alex Kost <alezost@gmail.com> | 2014-10-08 17:15:49 +0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-10-10 00:06:35 +0200 |
commit | 5d7a8584f5c6aeed720c1115b8d46aa5a8d3157b (patch) | |
tree | 1951ecb136601c8b3d8c440ed97da475eceb2334 /guix/scripts | |
parent | 12703d0854a1b16ddc73fd7c2440ef8497593a70 (diff) | |
download | gnu-guix-5d7a8584f5c6aeed720c1115b8d46aa5a8d3157b.tar gnu-guix-5d7a8584f5c6aeed720c1115b8d46aa5a8d3157b.tar.gz |
ui: Move 'show-manifest-transaction' from (guix profiles).
* guix/profiles.scm: Do not use (guix ui) module.
(right-arrow, manifest-show-transaction): Move and rename to...
* guix/ui.scm (right-arrow, show-manifest-transaction): ... here.
* tests/profiles.scm ("manifest-show-transaction"): Move to...
* tests/ui.scm ("show-manifest-transaction"): ... here.
(guile-1.8.8, guile-2.0.9): New variables.
* emacs/guix-main.scm (process-package-actions): Rename
'manifest-show-transaction' to 'show-manifest-transaction'.
* guix/scripts/package.scm (guix-package): Likewise.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/package.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm index fc9c37b266..031f71a441 100644 --- a/guix/scripts/package.scm +++ b/guix/scripts/package.scm @@ -770,7 +770,7 @@ more information.~%")) new #:info-dir? (not bootstrap?)))) (prof (derivation->output-path prof-drv))) - (manifest-show-transaction (%store) manifest transaction + (show-manifest-transaction (%store) manifest transaction #:dry-run? dry-run?) (show-what-to-build (%store) (list prof-drv) #:use-substitutes? |