diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 21:08:00 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:24 +0200 |
commit | 96c55c175626d9ef39c69315242eceddcc6c1195 (patch) | |
tree | ffc089db9937f25f02c63e0be3bb641fefc5a6c1 /gnu | |
parent | 663b5d2abbc8938f821872dcf28e67826b4180ba (diff) |
gnu: Add texlive-biblatex-lni.
* gnu/packages/tex.scm (texlive-biblatex-lni): New variable.
Diffstat (limited to 'gnu')
-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 e987ec7aa1..2675c9b0eb 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4012,6 +4012,25 @@ via BibLaTeX's built-in related mechanism. It provides a new related type (LNCS). It extends the standard BiBTeX model by an acronym entry.") (license license:lppl1.3c))) +(define-public texlive-biblatex-lni + (package + (name "texlive-biblatex-lni") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-lni/" + "tex/latex/biblatex-lni/") + (base32 + "1532swanj6p4pq7a4gqkmqjsdby20ls04ghkvdjg4066z1mizjp4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-lni") + (synopsis "LNI style for BibLaTeX") + (description + "BibLaTeX style for the Lecture Notes in Informatics, which is published +by the Gesellschaft fur Informatik (GI e.V.).") + (license license:lppl1.3+))) + (define-public texlive-bibleref (package (name "texlive-bibleref") |