mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add julia-commonsubexpressions.
* gnu/packages/julia-xyz.scm (julia-commonsubexpressions): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
a0d3a73fc6
commit
2ca38ee4e7
1 changed files with 22 additions and 0 deletions
|
@ -230,6 +230,28 @@ (define-public julia-colortypes
|
|||
with.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-commonsubexpressions
|
||||
(package
|
||||
(name "julia-commonsubexpressions")
|
||||
(version "0.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rdeits/CommonSubexpressions.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0mgy90kk8ksv3l720kkk04gnhn4aqhh2dj4sp3x8yy3limngfjay"))))
|
||||
(build-system julia-build-system)
|
||||
(propagated-inputs
|
||||
`(("julia-macrotools" ,julia-macrotools)))
|
||||
(home-page "https://github.com/rdeits/CommonSubexpressions.jl")
|
||||
(synopsis "Macro @code{@cse}")
|
||||
(description "This package provides the @code{@cse} macro, which performs
|
||||
common subexpression elimination.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-compat
|
||||
(package
|
||||
(name "julia-compat")
|
||||
|
|
Loading…
Reference in a new issue