summaryrefslogtreecommitdiff
path: root/guix/scripts/describe.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix/scripts/describe.scm')
-rw-r--r--guix/scripts/describe.scm3
1 files changed, 3 insertions, 0 deletions
diff --git a/guix/scripts/describe.scm b/guix/scripts/describe.scm
index 0c310e3da8..80cd0ce00a 100644
--- a/guix/scripts/describe.scm
+++ b/guix/scripts/describe.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
+;;; Copyright © 2022 jgart <jgart@dismail.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -119,6 +120,7 @@ Display information about the channels currently in use.\n"))
(let ((intro (channel-introduction channel)))
`((name . ,(channel-name channel))
(url . ,(channel-url channel))
+ (branch . ,(channel-branch channel))
(commit . ,(channel-commit channel))
,@(if intro
`((introduction
@@ -135,6 +137,7 @@ Display information about the channels currently in use.\n"))
(format port "name: ~a~%" (channel-name channel))
(format port "url: ~a~%" (channel-url channel))
+ (format port "branch: ~a~%" (channel-branch channel))
(format port "commit: ~a~%" (channel-commit channel))
(when intro
(format port "introductioncommit: ~a~%"