diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-18 12:07:27 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:37 +0200 |
commit | 148c4f13dd2bf2d2b7ec791a5a78d2d80c5a71b3 (patch) | |
tree | db496c6b5a93f7d2f626dd25405cf6eb2d25db3f /gnu/packages | |
parent | 3bef2e4f6396273c36dde25e0abab6cc29ae750a (diff) |
gnu: Add texlive-doipubmed.
* gnu/packages/tex.scm (texlive-doipubmed): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 68b8a20ea5..cb686d2307 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7736,6 +7736,27 @@ programming languages.") ;; package without any limit". (license (license:fsf-free "file://doc/generic/docbytex/README")))) +(define-public texlive-doipubmed + (package + (name "texlive-doipubmed") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/doipubmed/" + "source/latex/doipubmed/" + "tex/latex/doipubmed/") + (base32 + "1432hh1pr5r6izfcqlbvl1lxpradidrwpfkvjr25ds1rlh240y66"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/doipubmed") + (synopsis "Special commands for use in bibliographies") + (description + "The package provides the commands @code{\\doi}, @code{\\pubmed} and +@code{\\citeurl}. These commands are primarily designed for use in +bibliographies. A @code{LaTeX2HTML} style file is also provided.") + (license license:lppl))) + (define-public texlive-dosepsbin (package (name "texlive-dosepsbin") |