guix_mirror_bot pushed a commit to branch add-compress-debug-symbols-phase in repository guix.
commit 292f9274e2b482c7124e8c70e6f7b2cb23ea0f92 Author: Maxim Cournoyer <[email protected]> AuthorDate: Tue Nov 18 23:29:59 2025 +0900 gnu: linux-libre-documentation: Adjust to use Zstd file extension. * gnu/packages/linux.scm (linux-libre-documentation): [#:phases] {install}: Use the .zst file extension. Change-Id: Ia9df97e9461fc307c51ae374bedf205ce8e4c0e9 --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index ed43e2dd19..8145e401de 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3333,13 +3333,13 @@ GnuPG-based password manager like @code{pass}.") (lambda _ (let* ((info-dir (string-append #$output "/share/info")) (info (string-append info-dir - "/TheLinuxKernel.info.gz"))) + "/TheLinuxKernel.info.zst"))) (with-directory-excursion "Documentation/output" (invoke "make" "-C" "texinfo" "install-info" (string-append "infodir=" info-dir))) ;; Create a symlink, for convenience. (symlink info (string-append info-dir - "/linux.info.gz")))))))) + "/linux.info.zst")))))))) (native-inputs (list graphviz perl
