diff options
| author | Spencer King <spencer.king@geneoscopy.com> | 2024-12-20 21:58:56 +0000 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2024-12-24 16:09:50 +0100 |
| commit | 27e389277affac9e5476e013eeddb9d9ec8af09c (patch) | |
| tree | 2b0944ec7a6d04c801e2c609b8435789dd79092f | |
| parent | 6da6a19fc35eb48e407a5aed65d80e1b65a799c1 (diff) | |
gnu: Add julia-compositionsbase.
* gnu/packages/julia-xyz.scm (julia-compositionsbase): New variable.
Change-Id: Ia9da8f250c61c53b605a98684be2c3ed1e139cd2
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| -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 2d83425c792..b7d2a06ebf4 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1292,6 +1292,28 @@ provides a macro that lets you use the latest syntax in a backwards-compatible way.") (license license:expat))) +(define-public julia-compositionsbases + (package + (name "julia-compositionsbase") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaFunctional/CompositionsBase.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11cfmc0rv0i8j6l7v59k4b367xx006nsxy9lkmqlzikc679zzzwa")))) + (build-system julia-build-system) + (native-inputs (list julia-documenter)) + (propagated-inputs (list julia-inversefunctions)) + (home-page "https://github.com/JuliaFunctional/CompositionsBase.jl") + (synopsis "Defines an operator for composition of morphisms") + (description "This package defines a new operator for composition +of morphisms.") + (license license:expat))) + (define-public julia-configurations (package (name "julia-configurations") |
