diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:17:11 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:33 +0200 |
commit | 71e96b62f3125cbafdd1680bd346e6c2d02ef9d2 (patch) | |
tree | c2cc1b50092bfc06ad0d18e3f2b07ab3941bfb10 /gnu/packages | |
parent | e59e60e7d107d95654580e91e64c852e1dcdca0e (diff) | |
download | guix-71e96b62f3125cbafdd1680bd346e6c2d02ef9d2.tar.gz guix-71e96b62f3125cbafdd1680bd346e6c2d02ef9d2.zip |
gnu: Add texlive-pgfmolbio.
* gnu/packages/tex.scm (texlive-pgfmolbio): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7e768088ac..268990cfc0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3181,6 +3181,28 @@ a problem with the @code{pgfkeys} package. The package also introduces handlers beyond those that @code{pgfkeys} can offer.") (license license:lppl1.3+))) +(define-public texlive-pgfmolbio + (package + (name "texlive-pgfmolbio") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/pgfmolbio/" + "scripts/pgfmolbio/" + "source/lualatex/pgfmolbio/" + "tex/lualatex/pgfmolbio/") + (base32 + "12kajg7jrhd612lk7m6gwadxb5y7v9znqjlg1n3n05zwrmfd54w1"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pgfmolbio") + (synopsis "Draw graphs typically found in molecular biology texts") + (description + "The package draws graphs typically found in molecular biology texts. +Currently, the package contains modules for drawing DNA sequencing +chromatograms and protein domain diagrams.") + (license license:lppl1.3+))) + (define-public texlive-amiri (package (name "texlive-amiri") |