mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-29 07:42:23 -05:00
gnu: Add julia-interpolations.
* gnu/packages/julia-xyz.scm (julia-interpolations): New variable.
This commit is contained in:
parent
9e21a2a108
commit
fcc15a4a32
1 changed files with 32 additions and 0 deletions
|
@ -1872,6 +1872,38 @@ (define-public julia-inifile
|
||||||
interfaces with @file{.ini} files.")
|
interfaces with @file{.ini} files.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-interpolations
|
||||||
|
(package
|
||||||
|
(name "julia-interpolations")
|
||||||
|
(version "0.13.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaMath/Interpolations.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "06wh4fc7hy20kq9iipk3w8v50vd09k7vkii43k8z1vw036f6l7x3"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-axisalgorithms" ,julia-axisalgorithms)
|
||||||
|
("julia-offsetarrays" ,julia-offsetarrays)
|
||||||
|
("julia-ratios" ,julia-ratios)
|
||||||
|
("julia-staticarrays" ,julia-staticarrays)
|
||||||
|
("julia-woodburymatrices" ,julia-woodburymatrices)))
|
||||||
|
(native-inputs
|
||||||
|
`(("julia-dualnumbers" ,julia-dualnumbers)
|
||||||
|
("julia-forwarddiff" ,julia-forwarddiff)
|
||||||
|
("julia-offsetarrays" ,julia-offsetarrays)
|
||||||
|
("julia-unitful" ,julia-unitful)))
|
||||||
|
(home-page "https://github.com/JuliaMath/Interpolations.jl")
|
||||||
|
(synopsis "Continuous interpolation of discrete datasets")
|
||||||
|
(description "This package implements a variety of interpolation schemes for
|
||||||
|
the Julia language. It has the goals of ease-of-use, broad algorithmic support,
|
||||||
|
and exceptional performance.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-intervalsets
|
(define-public julia-intervalsets
|
||||||
(package
|
(package
|
||||||
(name "julia-intervalsets")
|
(name "julia-intervalsets")
|
||||||
|
|
Loading…
Reference in a new issue