mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add julia-chainrulescore.
* gnu/packages/julia-xyz.scm (julia-chainrulescore): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
658fca53e9
commit
bb1ca1f372
1 changed files with 25 additions and 0 deletions
|
@ -121,6 +121,31 @@ (define-public julia-bufferedstreams
|
|||
reading and writing faster.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-chainrulescore
|
||||
(package
|
||||
(name "julia-chainrulescore")
|
||||
(version "0.9.29")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaDiff/ChainRulesCore.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1k0iayw39n1ikkkhvyi4498vsnzc94skqs41gnd15632gxjfvki4"))))
|
||||
(build-system julia-build-system)
|
||||
(inputs ;required for tests
|
||||
`(("julia-benchmarktools" ,julia-benchmarktools)
|
||||
("julia-staticarrays" ,julia-staticarrays)))
|
||||
(propagated-inputs
|
||||
`(("julia-compat" ,julia-compat)))
|
||||
(home-page "https://github.com/JuliaDiff/ChainRulesCore.jl")
|
||||
(synopsis "Common utilities used by downstream automatic differentiation tools")
|
||||
(description "The package provides a light-weight dependency for defining
|
||||
sensitivities for functions without the need to depend on ChainRules itself.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-colors
|
||||
(package
|
||||
(name "julia-colors")
|
||||
|
|
Loading…
Reference in a new issue