diff options
author | zimoun <zimon.toutoune@gmail.com> | 2021-03-25 02:04:53 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-03-29 16:47:19 +0200 |
commit | 02543b524b0a73619d9ef6fae336015b12df3ffa (patch) | |
tree | c3c6946090ff06bcec4423f1fcbf227712c3eed4 /gnu/packages/julia-xyz.scm | |
parent | a5edd83ddb3aec9a896848b6a8b40e8aefbf2f68 (diff) | |
download | guix-02543b524b0a73619d9ef6fae336015b12df3ffa.tar guix-02543b524b0a73619d9ef6fae336015b12df3ffa.tar.gz |
gnu: Add julia-reexport.
* gnu/packages/julia-xyz.scm (julia-reexport): 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 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 6508fa52af..41acd06ee3 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -522,6 +522,25 @@ languages like Fortran.") utilities for Julia.") (license license:expat))) +(define-public julia-reexport + (package + (name "julia-reexport") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/simonster/Reexport.jl") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhhja1zz6dy5f4fd19bdwd6jwgj7q4w3avzgyg1hjhmdl8jrh0s")))) + (build-system julia-build-system) + (home-page "https://github.com/simonster/Reexport.jl") + (synopsis "Re-export modules and symbols") + (description "This package provides tools to re-export modules and symbols.") + (license license:expat))) + (define-public julia-uris (package (name "julia-uris") |