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