1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

ui: Show package version for all package installs

* guix/ui.scm (show-manifest-transaction): Include old version in message.

Change-Id: I897ec2d52a1cd4d030929a1adc3458f29c9ae4d4
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Merges: #7133
This commit is contained in:
Simon Josefsson
2026-03-14 08:56:41 +01:00
committed by Ludovic Courtès
parent 385053f296
commit bcf39f96b8

View File

@@ -1378,7 +1378,9 @@ separator between subsequent columns."
(if old-versions
(map (lambda (old new)
(if (string=? old new)
(G_ "(dependencies or package changed)")
(string-append
old " "
(G_ "(dependencies or package changed)"))
(string-append old " " " " new)))
old-versions versions)
versions))