diff options
author | Ludovic Courtès <ludo@gnu.org> | 2025-05-23 11:17:59 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-05-23 11:17:59 +0200 |
commit | 5e47bafb37090bee792cb616a4f5337aa47b4224 (patch) | |
tree | 9e5eeac4b71e708aa741894dbdca6f03cfb0e6f9 | |
parent | 60025c2425dbac99df1219ed907c7c55e454b932 (diff) |
describe: Recognize git.guix.gnu.org for commit hyperlinks.
* guix/scripts/describe.scm (%vcs-web-views): Add git.guix.gnu.org.
Change-Id: I47ded4618dec3073925efdfa5df87ab47643f8c4
-rw-r--r-- | guix/scripts/describe.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/scripts/describe.scm b/guix/scripts/describe.scm index 08cb1b07c7..ab3641efb6 100644 --- a/guix/scripts/describe.scm +++ b/guix/scripts/describe.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2018, 2019, 2020, 2021, 2023, 2024 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2018-2021, 2023-2025 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com> ;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech> ;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com> @@ -255,6 +255,7 @@ PROFILE and NUMBER " ("notabug.org" ,labhub-url) ("framagit.org" ,labhub-url) ("codeberg.org" ,labhub-url) + ("git.guix.gnu.org" ,labhub-url) ;alias for codeberg.org ("gitlab.com" ,labhub-url) ("gitlab.inria.fr" ,labhub-url) ("github.com" ,labhub-url)))) |