diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 20:00:52 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:23 +0200 |
commit | 98b5d83c719192def0212a254b852a93447c104b (patch) | |
tree | ba913342966d129e69b18bfa90191c000764a4a8 /gnu | |
parent | bd8f4b3ed4941d1ee2e7d2a4d6f64ce556aff54a (diff) | |
download | guix-98b5d83c719192def0212a254b852a93447c104b.tar.gz guix-98b5d83c719192def0212a254b852a93447c104b.zip |
gnu: Add texlive-biblatex-jura2.
* gnu/packages/tex.scm (texlive-biblatex-jura2): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 407c799f77..dd34ca1a3e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3936,6 +3936,24 @@ Student Research in Archaeology.") the latest revision of the international standard ISO 690:2010.") (license license:lppl1.3+))) +(define-public texlive-biblatex-jura2 + (package + (name "texlive-biblatex-jura2") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/biblatex-jura2/" + "tex/latex/biblatex-jura2/") + (base32 + "1cnsmk46j98z7wk7qs6v9f5m42x124v2nxrnq8n1jcs1jd03q6ry"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblatex-jura2") + (synopsis "Citation style for the German legal profession") + (description + "The package offers BibLaTeX support for citations in German legal texts.") + (license license:lppl1.3c))) + (define-public texlive-bibleref (package (name "texlive-bibleref") |