From 03a83c290603c2c4b6b9af7086e876448a7a8e41 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 29 Mar 2023 21:04:13 +0200 Subject: import/texlive: Only process description if it exists. * guix/import/texlive.scm (tlpdb->package): Run beautify-description only when the "longdesc" field exists. --- guix/import/texlive.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/guix/import/texlive.scm b/guix/import/texlive.scm index a81805bdca..f1557fcd0f 100644 --- a/guix/import/texlive.scm +++ b/guix/import/texlive.scm @@ -298,10 +298,9 @@ of those files are returned that are unexpectedly installed." `((home-page ,(string-append "https://ctan.org" url))))) '((home-page "https://www.tug.org/texlive/"))) (synopsis ,(assoc-ref data 'shortdesc)) - (description ,(beautify-description - (assoc-ref data 'longdesc))) (license ,(string->license (assoc-ref data 'catalogue-license)))) + (description ,(and=> (assoc-ref data 'longdesc) beautify-description)) filtered-depends))) (define texlive->guix-package -- cgit v1.2.3