[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51028] [PATCH 5/7] gnu: Add julia-expronicon.
From: |
Efraim Flashner |
Subject: |
[bug#51028] [PATCH 5/7] gnu: Add julia-expronicon. |
Date: |
Tue, 5 Oct 2021 12:47:34 +0300 |
* gnu/packages/julia-xyz.scm (julia-expronicon): New variable.
---
gnu/packages/julia-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index f53d4bce6d..895e43bb14 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -1343,6 +1343,40 @@ (define-public julia-example
(description "This package provides various examples.")
(license license:expat))))
+;; ExproniconLite.jl is autogenerated from this package.
+(define-public julia-expronicon
+ (package
+ (name "julia-expronicon")
+ (version "0.6.10")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Roger-luo/Expronicon.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0h8aaynqlxrkn8575k5vqmhzil4vvxchhf0bcxa6zwawp558gj2y"))))
+ (build-system julia-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'skip-network-tests
+ (lambda _
+ (substitute* "test/runtests.jl"
+ ;; This test tries to access the Julia package registry.
+ ((".*expand\\.jl.*") "")))))))
+ (propagated-inputs
+ `(("julia-mlstyle" ,julia-mlstyle)))
+ (native-inputs
+ `(("julia-documenter" ,julia-documenter)))
+ (home-page "https://expronicon.rogerluo.dev/dev/")
+ (synopsis "Collective tools for metaprogramming on Julia Expr")
+ (description "This package provides a collection of tools for
+metaprogramming on Julia Expr, the meta programming standard library for
+@code{MLStyle}.")
+ (license license:expat)))
+
(define-public julia-exprtools
(package
(name "julia-exprtools")
--
2.33.0
- [bug#51028] [PATCH 0/7] More julia packages, Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 1/7] gnu: Add julia-latexstrings., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 2/7] gnu: Add julia-pyplot., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 3/7] gnu: Add julia-dataframes., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 4/7] gnu: Add julia-bson., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 5/7] gnu: Add julia-expronicon.,
Efraim Flashner <=
- [bug#51028] [PATCH 6/7] gnu: Add julia-configurations., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 7/7] gnu: Add julia-structarrays., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 0/7] More julia packages, zimoun, 2021/10/11