me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-pdmats.

* gnu/packages/julia-xyz.scm (julia-pdmats): New variable.
master
Efraim Flashner 2021-05-20 16:55:00 +03:00
parent 47f67c565b
commit 9e30f6590c
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions
gnu/packages

View File

@ -1398,6 +1398,30 @@ performance critical code.")
utilities for Julia.")
(license license:expat)))
(define-public julia-pdmats
(package
(name "julia-pdmats")
(version "0.11.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaStats/PDMats.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1gyhfjmb0qlqgx2398b356cph25bnpjagcslckv41bzyf8pg3ybl"))))
(build-system julia-build-system)
(home-page "https://github.com/JuliaStats/PDMats.jl")
(synopsis
"Uniform Interface for positive definite matrices of various structures")
(description "PDMats.jl supports efficient computation on positive definite
matrices of various structures. In particular, it provides uniform interfaces
to use positive definite matrices of various structures for writing generic
algorithms, while ensuring that the most efficient implementation is used in
actual computation.")
(license license:expat)))
(define-public julia-reexport
(package
(name "julia-reexport")