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>
This commit is contained in:
Spencer King 2024-12-20 21:58:56 +00:00 committed by Ludovic Courtès
parent 6da6a19fc3
commit 27e389277a
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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")