diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:17:23 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:59 +0200 |
commit | 3fd5ef29f94245c6afc2b65853cba1596f5d5f29 (patch) | |
tree | 67c7208a8f15414e97f704b632f2f8d82781abc9 /gnu/packages | |
parent | bdab74a4bf6e0342a4f962cbe82317c9e6f30a07 (diff) | |
download | guix-3fd5ef29f94245c6afc2b65853cba1596f5d5f29.tar.gz |
gnu: Add texlive-psfrag-italian.
* gnu/packages/tex.scm (texlive-psfrag-italian): New variable.
Diffstat (limited to 'gnu/packages')
-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 f777b48f20..d21b39a246 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -24152,6 +24152,24 @@ rotated.") (define-deprecated-package texlive-latex-psfrag texlive-psfrag) +(define-public texlive-psfrag-italian + (package + (name "texlive-psfrag-italian") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/psfrag-italian/") + (base32 + "0ssx8rw7fwln02zzscywivnhizgrb6w05awscvv9gf9n1qj6avsf"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/psfrag-italian") + (synopsis "PSfrag documentation in Italian") + (description + "This is a translation of the documentation that comes with the +@code{psfrag} package.") + (license license:gpl3+))) + (define-public texlive-pstool (package (name "texlive-pstool") |