From 54eeeaa48c6a666bd065cb40e2285ed8a73429b1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 12 Jul 2023 22:24:24 +0200 Subject: [PATCH] gnu: Add texlive-esk. * gnu/packages/tex.scm (texlive-esk): New variable. --- gnu/packages/tex.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c9a1b7c353..93a9599513 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17020,6 +17020,30 @@ (define-public texlive-epspdfconversion as grayscale, prepress or pdfversion) to the @code{epspdf} converter.") (license license:lppl))) +(define-public texlive-esk + (package + (name "texlive-esk") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/esk/" "source/latex/esk/" + "tex/latex/esk/") + (base32 + "0hx58ajinbfc6axd4xbj395vyhr7mj247fvlzfjx71hcg9jnwkp4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/esk") + (synopsis "Package to encapsulate Sketch files in LaTeX sources") + (description + "The ESK package allows to encapsulate Sketch files in LaTeX sources. +This is very useful for keeping illustrations synchronized with the text. It +also frees the user from inventing descriptive names for new files that fit +into the confines of file system conventions. Sketch is a 3D scene +description language by Eugene K. Ressler and can generate TikZ and PSTricks +code. ESK behaves in a similar fashion to EMP (which encapsulates MetaPost +files), and was in fact developed from it.") + (license license:gpl3+))) + (define-public texlive-gates (package (name "texlive-gates")