aboutsummaryrefslogtreecommitdiff
path: root/etc
ModeNameSize
d---------completion92logplain
d---------git36logplain
-rw-r--r--guix-daemon.cil.in8789logplainabout
-rw-r--r--guix-daemon.conf.in339logplainabout
-rw-r--r--guix-daemon.service.in720logplainabout
-rwxr-xr-xguix-install.sh12708logplainabout
-rw-r--r--guix-publish.conf.in343logplainabout
-rw-r--r--guix-publish.service.in633logplainabout
-rwxr-xr-xindent-code.el.in3312logplainabout
d---------snippets74logplain
d---------substitutes138logplain
tring, the part of the package that
diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm
index c0cedcd4a8..1d00e39540 100644
--- a/guix/scripts/package.scm
+++ b/guix/scripts/package.scm
@@ -965,9 +965,12 @@ more information.~%"))
((name version output location _)
(format #t " ~a\t~a\t~a\t~a~%"
name version output location)))
- (manifest-packages
- (profile-manifest
- (format #f "~a-~a-link" profile number))))
+
+ ;; Show most recently installed packages last.
+ (reverse
+ (manifest-packages
+ (profile-manifest
+ (format #f "~a-~a-link" profile number)))))
(newline)))
(cond ((not (file-exists? profile)) ; XXX: race condition
@@ -994,7 +997,9 @@ more information.~%"))
(regexp-exec regexp name))
(format #t "~a\t~a\t~a\t~a~%"
name (or version "?") output path))))
- installed)
+
+ ;; Show most recently installed packages last.
+ (reverse installed))
#t))
(('list-available regexp)