diff options
author | King, Spencer via Guix-patches via <guix-patches@gnu.org> | 2025-03-06 06:18:41 +0000 |
---|---|---|
committer | Simon Tournier <zimon.toutoune@gmail.com> | 2025-03-07 18:30:50 +0100 |
commit | c8bde3c6725be4eb0743a153a3cf8de453d9e448 (patch) | |
tree | c23fbe5aba9585d8afab57ca06284d96374a30fe | |
parent | 535efb3c9add7e32530aa0dced40b18b12b8ed95 (diff) |
gnu: Add julia-polylog.
* gnu/packages/julia-xyz.scm (julia-polylog): New variable.
Change-Id: I0ec8cec07552ef297fc1ecb086678fe9edfd051c
Signed-off-by: Simon Tournier <zimon.toutoune@gmail.com>
-rw-r--r-- | gnu/packages/julia-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index e1722c0fba..f875f345dd 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -5218,6 +5218,27 @@ the test cases.") plotting components.") (license license:expat))) +(define-public julia-polylog + (package + (name "julia-polylog") + (version "2.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Expander/PolyLog.jl") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rfmlh5rvgh84qvvachqgvy0ra5yym28vj09xlw9cq19bkyids64")))) + (build-system julia-build-system) + (home-page "https://github.com/Expander/PolyLog.jl") + (synopsis "Implementation of polylogarithms in Julia") + (description + "This package implements real and complex polylogarithms, +including the real and complex dilogarithm and trilogarithm in Julia.") + (license license:expat))) + (define-public julia-pooledarrays (package (name "julia-pooledarrays") |