mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add julia-specialfunctions.
* gnu/packages/julia-xyz.scm (julia-specialfunctions): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
73052c7005
commit
3d98a16ab4
1 changed files with 27 additions and 0 deletions
|
@ -1004,6 +1004,33 @@ (define-public julia-richardson
|
|||
other power series in @code{h}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-specialfunctions
|
||||
(package
|
||||
(name "julia-specialfunctions")
|
||||
(version "1.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaMath/SpecialFunctions.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1rfhrrkzi3ils7fklbn35ki1yp5x88fi71qknfwqyw4pk8cf8p80"))))
|
||||
(build-system julia-build-system)
|
||||
(inputs
|
||||
`(("julia-chainrulestestutils" ,julia-chainrulestestutils)))
|
||||
(propagated-inputs
|
||||
`(("julia-chainrulescore" ,julia-chainrulescore)
|
||||
("julia-openspecfun-jll" ,julia-openspecfun-jll)))
|
||||
(home-page "https://github.com/JuliaMath/SpecialFunctions.jl")
|
||||
(synopsis "Special mathematical functions")
|
||||
(description "This package provides special mathematical functions,
|
||||
including Bessel, Hankel, Airy, error, Dawson, exponential (or sine and
|
||||
cosine) integrals, eta, zeta, digamma, inverse digamma, trigamma, and
|
||||
polygamma functions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-staticarrays
|
||||
(package
|
||||
(name "julia-staticarrays")
|
||||
|
|
Loading…
Reference in a new issue