diff options
author | zimoun <zimon.toutoune@gmail.com> | 2021-03-25 02:05:06 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-03-29 16:47:21 +0200 |
commit | 2ca38ee4e70cdbd26a1faa719e1a4ec8ef6476e3 (patch) | |
tree | 925a47615af59998ef41ecba8b39881f9c0948cd /gnu/packages/julia-xyz.scm | |
parent | a0d3a73fc617eccc8f21a2b1e1164ca1c856ddeb (diff) | |
download | guix-2ca38ee4e70cdbd26a1faa719e1a4ec8ef6476e3.tar guix-2ca38ee4e70cdbd26a1faa719e1a4ec8ef6476e3.tar.gz |
gnu: Add julia-commonsubexpressions.
* gnu/packages/julia-xyz.scm (julia-commonsubexpressions): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/julia-xyz.scm')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index e3d2c9ff89..c5c04d6579 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -230,6 +230,28 @@ constructors, and sets up traits and show methods to make them easier to work 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") |