diff options
author | Spencer King <spencer.king@wustl.edu> | 2025-03-09 18:54:39 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-03-18 11:42:53 +0100 |
commit | 22191ca4be4a163b9fc228370dfeb8cde8c23111 (patch) | |
tree | f8d9bb537ffb078298dbda784e7a4badc9c37f8c | |
parent | bd678967b00150ea16516f05b095ff1e0ad994e0 (diff) | |
download | guix-22191ca4be4a163b9fc228370dfeb8cde8c23111.tar.gz guix-22191ca4be4a163b9fc228370dfeb8cde8c23111.zip |
gnu: Add julia-clausenfunctions.
* gnu/packages/julia-xyz.scm (julia-clausenfunctions): New variable.
Change-Id: Ifaaafc14e27d6a3ec9ac0fa987b7da048f9325c6
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/julia-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index f875f345dd..03bbb8e70f 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1104,6 +1104,29 @@ changes for functions that perform a change of variables (like coordinate transformations).") (license license:expat))) +(define-public julia-clausenfunctions + (package + (name "julia-clausenfunctions") + (version "1.16.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Expander/ClausenFunctions.jl") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vwzbx3nykm6zv4hkpwhfhc0x58zafn8s9xlw6xlj4glaf0v11sk")))) + (build-system julia-build-system) + (propagated-inputs (list julia-polylog)) + (home-page "https://github.com/Expander/ClausenFunctions.jl") + (synopsis "Clausen functions in Julia") + (description + "This package provides Julia implementations of the +Standard Clausen functions and Glaisher-Clausen functions of integer +order for real or complex arguments.") + (license license:expat))) + (define-public julia-codeczlib (package (name "julia-codeczlib") |