aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/tex.scm25
1 files changed, 25 insertions, 0 deletions
Asymptote bundle. The Asymptote way
+can prove cumbersome in a large document; the present package allows the user
+to process one picture at a time, in simple test documents, and then to
+migrate (with no fuss) to their use in the target document.")
+ (license license:lppl)))
+
(define-public texlive-auto-pst-pdf-lua
(package
(name "texlive-auto-pst-pdf-lua")
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 46756f9706..74b169a619 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -16043,6 +16043,31 @@ draws K-maps where the most significant input variables are placed on top of
the columns and the least significant variables are placed left of the rows.")
(license license:lppl)))
+(define-public texlive-asyfig
+ (package
+ (name "texlive-asyfig")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/asyfig/" "source/latex/asyfig/"
+ "tex/latex/asyfig/")
+ (base32
+ "01
2019-11-09services: 'fold-services' memoizes service values....Previously 'fold-services' could end up traversing the same services in the graph several times, which is what this change addresses. The hit rate on the 'add-data-to-store' cache goves from 9% to 8% on "guix system build desktop.tmpl -nd", and the number of lookups in that cache goes from 4458 to 4383. * gnu/services.scm (fold-services): Turn 'loop' into a monadic procedure in %STATE-MONAD and use it to memoize values of visited services. Ludovic Courtès