3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-sleef-sys-0.1.

* gnu/packages/crates-io.scm (rust-sleef-sys-0.1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2019-12-15 09:40:03 -08:00 committed by Efraim Flashner
parent b364ad1366
commit e3d04c3ccc
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -7537,6 +7537,36 @@ data type.")
(properties '((hidden? . #t)))
(license license:expat)))
(define-public rust-sleef-sys-0.1
(package
(name "rust-sleef-sys")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "sleef-sys" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1881q2yc17j2m1yvh01447c93ws1mspnrj3k2nbvwbvcm8z81kkv"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-cfg-if" ,rust-cfg-if-0.1)
("rust-libc" ,rust-libc-0.2))
#:cargo-development-inputs
(("rust-bindgen" ,rust-bindgen-0.50)
("rust-cmake" ,rust-cmake-0.1)
("rust-env-logger" ,rust-env-logger-0.6))))
(home-page "https://github.com/gnzlbg/sleef-sys")
(synopsis
"Rust FFI bindings to the SLEEF Vectorized Math Library")
(description
"Rust FFI bindings to the SLEEF Vectorized Math Library.")
(license (list license:asl2.0 license:expat))))
(define-public rust-slog-2.4
(package
(name "rust-slog")