diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-10-04 15:48:26 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-10-12 08:40:37 +0300 |
commit | 5ba67ed641ee7d670e3ef5037e6f0c34291a498d (patch) | |
tree | 1d6fad1a2a5e61a7f2edc3b9b8bbede1a6067a2c | |
parent | 4ea3215d8f18453e6b8ff0a46654e52b5741c3e6 (diff) | |
download | guix-5ba67ed641ee7d670e3ef5037e6f0c34291a498d.tar.gz |
gnu: Add julia-expronicon.
* gnu/packages/julia-xyz.scm (julia-expronicon): New variable.
-rw-r--r-- | gnu/packages/julia-xyz.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index a9ae66d588..6fcb0fceee 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1347,6 +1347,40 @@ before (or after)\".") (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") |