diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 19:49:36 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:17 +0200 |
commit | c299fa4a28030a79acf07d1efb03dfcd0914c0e4 (patch) | |
tree | e9a0dac82c500feb3a1ee145a91dd7449a5f3306 /gnu/packages | |
parent | e28fc956396e060643f0365f0aa0d7cfea8538fb (diff) | |
download | guix-c299fa4a28030a79acf07d1efb03dfcd0914c0e4.tar.gz |
gnu: Add texlive-biblatex-anonymous.
* gnu/packages/tex.scm (texlive-biblatex-anonymous): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 582e4de5eb..8164b321ac 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3419,6 +3419,25 @@ Combinatorics. Note that the journal (as for 01 March 2020) does not accept BibLaTeX, so you probably want to use @code{biblatex2bibitem}.") (license license:lppl1.3c))) +(define-public texlive-biblatex-anonymous + (package + (name "texlive-biblatex-anonymous") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-anonymous/" + "tex/latex/biblatex-anonymous/") + (base32 + "1q24xrr80i6xsq65gfvvi1s5qsp78g52qgn2nf2523gjnnzp4p7n"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-anonymous") + (synopsis "Tool to manage anonymous work with BibLaTeX") + (description + "The package provides tools to help manage anonymous work with BibLaTeX. +It will be useful, for example, in history or classical philology.") + (license license:lppl1.3+))) + (define-public texlive-bibleref (package (name "texlive-bibleref") |