guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

14/26: gnu: Add julia-exprtools.


From: guix-commits
Subject: 14/26: gnu: Add julia-exprtools.
Date: Mon, 31 May 2021 05:56:22 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 73b6f78c98405797aa85e884df4a17d4cf195ce9
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon May 31 11:31:50 2021 +0300

    gnu: Add julia-exprtools.
    
    * gnu/packages/julia-xyz.scm (julia-exprtools): New variable.
---
 gnu/packages/julia-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 9676466..aeccbf3 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -697,6 +697,27 @@ stressing the robustness of differentiation tools.")
       (description "This package provides various examples.")
       (license license:expat))))
 
+(define-public julia-exprtools
+  (package
+    (name "julia-exprtools")
+    (version "0.1.3")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/invenia/ExprTools.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "1lwxi9fx9farf1jdv42gv43xs3f3i3js2xnvr5gf6d0xfx0g6b6a"))))
+    (build-system julia-build-system)
+    (home-page "https://github.com/invenia/ExprTools.jl";)
+    (synopsis "Light-weight expression manipulation tools")
+    (description "@code{ExprTools} provides tooling for working with Julia
+expressions during metaprogramming.  This package aims to provide light-weight
+performant tooling without requiring additional package dependencies.")
+    (license license:expat)))
+
 (define-public julia-ffmpeg
   (package
     (name "julia-ffmpeg")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]