civodul pushed a commit to branch master
in repository guix.

commit 27e389277affac9e5476e013eeddb9d9ec8af09c
Author: Spencer King <[email protected]>
AuthorDate: Fri Dec 20 21:58:56 2024 +0000

    gnu: Add julia-compositionsbase.
    
    * gnu/packages/julia-xyz.scm (julia-compositionsbase): New variable.
    
    Change-Id: Ia9da8f250c61c53b605a98684be2c3ed1e139cd2
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/julia-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 2d83425c79..b7d2a06ebf 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")

Reply via email to