mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add rust-cblas-sys.
* gnu/packages/crates-io.scm (rust-cblas-sys): New variable.
This commit is contained in:
parent
c4455f7d20
commit
84a232bf71
1 changed files with 22 additions and 0 deletions
|
@ -135,6 +135,28 @@ (define-public rust-blas-sys
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-cblas-sys
|
||||
(package
|
||||
(name "rust-cblas-sys")
|
||||
(version "0.1.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "cblas-sys" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0rgsn3klhhh09d8qf3b87zl4rwk93l2g0qzh9hhb0lff5kcfrzmn"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-libc" ,rust-libc))))
|
||||
(home-page "https://github.com/blas-lapack-rs/cblas-sys")
|
||||
(synopsis "Bindings to CBLAS (C)")
|
||||
(description
|
||||
"The package provides bindings to CBLAS (C).")
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-cfg-if
|
||||
(package
|
||||
(name "rust-cfg-if")
|
||||
|
|
Loading…
Reference in a new issue