diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-01-13 22:26:23 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-01-13 23:11:19 +0100 |
commit | 641b599d0bd1902abeab19e286cdd6c368f8daa3 (patch) | |
tree | 7f162e6a7d363919ddb9b13b4bba2de182abddd7 /tests/texlive.scm | |
parent | b1fc98d6b063a117fe2bcc19a60c8b9a48301593 (diff) |
import: texlive: Remove labels from 'propagated-inputs' field.
* guix/import/texlive.scm (tlpdb->package): Remove labels from
'propagated-inputs' field.
* tests/texlive.scm ("texlive->guix-package"): Adjust accordingly.
Diffstat (limited to 'tests/texlive.scm')
-rw-r--r-- | tests/texlive.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/texlive.scm b/tests/texlive.scm index 5ddd991767..f718e3a0a0 100644 --- a/tests/texlive.scm +++ b/tests/texlive.scm @@ -185,11 +185,11 @@ completely compatible with Plain TeX.") ('base32 (? string? hash)) #:trivial? #t)) ('propagated-inputs - (("texlive-cm" ',texlive-cm) - ("texlive-hyphen-base" ',texlive-hyphen-base) - ("texlive-knuth-lib" ',texlive-knuth-lib) - ("texlive-plain" ',texlive-plain) - ("texlive-tex" ',texlive-tex))) + ('list 'texlive-cm + 'texlive-hyphen-base + 'texlive-knuth-lib + 'texlive-plain + 'texlive-tex)) ('home-page "https://www.tug.org/texlive/") ('synopsis "Plain TeX macros for Physicists") ('description (? string? description)) |