guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/57: gnu: Add julia-inversefunctions.


From: guix-commits
Subject: 10/57: gnu: Add julia-inversefunctions.
Date: Wed, 21 Dec 2022 12:41:13 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit a1cfa757d75cf2b87a5298ce1ced9adf0c9e39b4
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Dec 14 12:50:35 2022 +0200

    gnu: Add julia-inversefunctions.
    
    * gnu/packages/julia-xyz.scm (julia-inversefunctions): New variable.
---
 gnu/packages/julia-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 3c854c729a..068b4742cd 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -3060,6 +3060,27 @@ container mapping @code{(K,V)} pairs via the type 
@code{IntervalTree{K, V}}.
 The type @code{K} may be any ordered type.")
       (license license:expat))))
 
+(define-public julia-inversefunctions
+  (package
+    (name "julia-inversefunctions")
+    (version "0.1.8")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/JuliaMath/InverseFunctions.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "05g9f6i735x7syfr56l4yf4fy71kgdisjc6cfxi4jkf46iq86a69"))))
+    (build-system julia-build-system)
+    (native-inputs
+     (list julia-documenter))
+    (home-page "https://github.com/JuliaMath/InverseFunctions.jl";)
+    (synopsis "Interface for function inversion")
+    (description "This package provides an interface to invert functions.")
+    (license license:expat)))
+
 (define-public julia-invertedindices
   (package
     (name "julia-invertedindices")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]