This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e2ba58a67f gnu: Add emacs-ob-asymptote.
e2ba58a67f is described below

commit e2ba58a67f8ebf1e9c0b1bc082db79ffae42a46f
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Wed May 1 15:37:17 2024 +0200

    gnu: Add emacs-ob-asymptote.
    
    * gnu/packages/emacs-xyz.scm (emacs-ob-asymptote): New variable.
    
    Change-Id: I022557ed6eb6473e26842a5e72d9abdd1d516d35
---
 gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 77e18a582c..411d7c0a1d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9099,6 +9099,32 @@ minibuffer to enable editing the minibuffer input in 
another buffer with
 source code using IPython.")
     (license license:gpl3+)))
 
+(define-public emacs-ob-asymptote
+  (package
+    (name "emacs-ob-asymptote")
+    (version "1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://elpa.gnu.org/packages/ob-asymptote-";
+                           version ".tar"))
+       (sha256
+        (base32 "1hmqbkrqg18w454xg37rg5cg0q3vd0b0fm14n5chihqrwwnwrf4l"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/hurrja/ob-asymptote";)
+    (synopsis "Babel functions for Asymptote")
+    (description
+     "This package provides Org Babel support for evaluating Asymptote source
+code.  This differs from most standard languages in that:
+@itemize
+@item there is no such thing as a ``session'' in Asymptote,
+@item we are generally only going to return results of type @code{file},
+@item we are adding the @code{file} and @code{cmdline} header arguments, if
+file is omitted then the @samp{-V} option is passed to the @command{asy}
+command for interactive viewing.
+@end itemize")
+    (license license:gpl3+)))
+
 (define-public emacs-ob-async
   (package
     (name "emacs-ob-async")

Reply via email to