mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add julia-finitedifferences.
* gnu/packages/julia-xyz.scm (julia-finitedifferences): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
dd7a77c345
commit
f6c5a8982b
1 changed files with 26 additions and 0 deletions
|
@ -285,6 +285,32 @@ (define-public julia-example
|
||||||
(description "This package provides various examples.")
|
(description "This package provides various examples.")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public julia-finitedifferences
|
||||||
|
(package
|
||||||
|
(name "julia-finitedifferences")
|
||||||
|
(version "0.12.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaDiff/FiniteDifferences.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0dcx34026xdpfmbjls3mrknl8ww62kxxfr77kfihbazsfg2gp5b4"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("julia-benchmarktools" ,julia-benchmarktools)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-chainrulescore" ,julia-chainrulescore)
|
||||||
|
("julia-richardson" ,julia-richardson)
|
||||||
|
("julia-staticarrays" ,julia-staticarrays)))
|
||||||
|
(home-page "https://github.com/JuliaDiff/FiniteDifferences.jl")
|
||||||
|
(synopsis "Estimates derivatives with finite differences")
|
||||||
|
(description "This package calculates approximate derivatives numerically
|
||||||
|
using finite difference.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-fixedpointnumbers
|
(define-public julia-fixedpointnumbers
|
||||||
(package
|
(package
|
||||||
(name "julia-fixedpointnumbers")
|
(name "julia-fixedpointnumbers")
|
||||||
|
|
Loading…
Reference in a new issue