diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 19:37:58 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 20:25:26 +0200 |
commit | 8ea9b0baae1ea0afb5bb597f343ea2d07ae7fac8 (patch) | |
tree | cb731dc5295a7cde0ff087d7dc20ef1435656a42 /gnu | |
parent | a9a3a5b62300fc946bf461ce193c934a50b84674 (diff) | |
download | guix-8ea9b0baae1ea0afb5bb597f343ea2d07ae7fac8.tar guix-8ea9b0baae1ea0afb5bb597f343ea2d07ae7fac8.tar.gz |
gnu: Add texlive-lexref.
* gnu/packages/tex.scm (texlive-lexref): New variable.
Diffstat (limited to 'gnu')
-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 37d853d02d..d65d26cfc8 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -8058,6 +8058,27 @@ symbols, the focus lies on single characters.") dictionary.") (license license:lppl))) +(define-public texlive-lexref + (package + (name "texlive-lexref") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/lexref/" "tex/latex/lexref/") + (base32 + "0562vjn0vvjsqfi2jqy1yp6mqi8nrs25yc9nr1zc950q421w0vrb"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/lexref") + (synopsis "Convenient and uniform references to legal provisions") + (description + "The package is aimed at continental lawyers (especially those in +Switzerland and Germany), allowing the user to make references to legal +provisions conveniently and uniformly. The package also allows the user to +add cited Acts to a nomenclature list (automatically), and to build specific +indexes for each cited Act.") + (license license:lppl1.3+))) + (define-public texlive-lie-hasse (package (name "texlive-lie-hasse") |