mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add julia-expronicon.
* gnu/packages/julia-xyz.scm (julia-expronicon): New variable.
This commit is contained in:
parent
4ea3215d8f
commit
5ba67ed641
1 changed files with 34 additions and 0 deletions
|
@ -1347,6 +1347,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")
|
||||
|
|
Loading…
Reference in a new issue