From 1d8451ddedb79f19acc9ac4035b1b47f5a2efeb1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 13 Jul 2023 00:34:18 +0200 Subject: [PATCH] gnu: Add texlive-hobby. * gnu/packages/tex.scm (texlive-hobby): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 52487ac2e9..b986e6dd42 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17535,6 +17535,26 @@ the option in an acceptable framework.") both documents and presentations, us TikZ.") (license license:lppl1.3+))) +(define-public texlive-hobby + (package + (name "texlive-hobby") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/hobby/" "source/latex/hobby/" + "tex/latex/hobby/") + (base32 + "1y0np4xpra136y2rqlwsifas33avfrv1psr8nxa92m7vmpd7l7fg"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/hobby") + (synopsis "Implementation of Hobby's algorithm for PGF/TikZ") + (description + "This package defines a path generation function for PGF/TikZ which +implements Hobby's algorithm for a path built out of Bezier curves which +passes through a given set of points.") + (license license:lppl1.3+))) + (define-public texlive-inlinedef (package (name "texlive-inlinedef")