diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:21:35 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:37 +0200 |
commit | 56b0bf0847ef9fa5555c4dc619c1ce918520bb6c (patch) | |
tree | 43e7056a052cf613c44c2cdea12cb242bf416ebb | |
parent | 56f6aabb4be7103b64f6f9e4d897ac0bde31dca9 (diff) | |
download | guix-56b0bf0847ef9fa5555c4dc619c1ce918520bb6c.tar.gz guix-56b0bf0847ef9fa5555c4dc619c1ce918520bb6c.zip |
gnu: Add texlive-productbox.
* gnu/packages/tex.scm (texlive-productbox): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 36071b66a9..463d4cadda 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3488,6 +3488,30 @@ itself is written in C. The package includes source code for a previewer application, a lightweight Qt-4 and Poppler-based prerex-enabled PDF viewer.") (license (list license:gpl2 license:lppl)))) +(define-public texlive-productbox + (package + (name "texlive-productbox") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/productbox/" + "source/latex/productbox/" + "tex/latex/productbox/") + (base32 + "12jj5am2h6lqmhc0dz9v8p2j9ci104s9xplki7ncn3fmhy5mm2fq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/productbox") + (synopsis "Typeset a three-dimensional product box") + (description + "The package enables typesetting of a three-dimensional product box. +This product box can be rendered as it is standing on a surface and some light +is shed onto it. Alternatively it can be typeset as a wireframe to be cut out +and glued together. This will lead to a physical product box.") + (license + (list + (license:fsf-free "https://tug.ctan.org/macros/latex/contrib/gene/productbox/productbox.ins"))))) + (define-public texlive-amiri (package (name "texlive-amiri") |