diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-29 00:20:57 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:41 +0200 |
commit | 42500f1aad885b873a1b0e78cdedc0a75b641be6 (patch) | |
tree | 7e033466e45a207fae3f6c7062ef9d621167f3ed | |
parent | fdf09bcd311b093bd10f0fb35fa4db80516fa7cc (diff) | |
download | guix-42500f1aad885b873a1b0e78cdedc0a75b641be6.tar.gz |
gnu: velvet: Fix error when building documentation.
* gnu/packages/bioinformatics.scm (velvet)[native-inputs]: Add TEXLIVE-GRFEXT, TEXLIVE-INFWARERR, TEXLIVE-KVOPTIONS and TEXLIVE-KPDFTEXCMDS.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 66e84d2925..81244f0daa 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -17089,9 +17089,14 @@ to an artifact/contaminant file.") (inputs (list openmpi zlib)) (native-inputs - `(("texlive" ,(texlive-updmap.cfg (list texlive-graphics - texlive-ec - texlive-hyperref))))) + `(("texlive" ,(texlive-updmap.cfg + (list texlive-ec + texlive-graphics + texlive-grfext + texlive-hyperref + texlive-infwarerr + texlive-kvoptions + texlive-pdftexcmds))))) (home-page "https://www.ebi.ac.uk/~zerbino/velvet/") (synopsis "Nucleic acid sequence assembler for very short reads") (description |