diff options
author | John Soo <jsoo1@asu.edu> | 2019-12-15 09:40:03 -0800 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-02 20:16:45 +0200 |
commit | e3d04c3cccf0773a02ebe7fe36724f3527f6337c (patch) | |
tree | cb1ce96ca117a8a9470bdd224971decfd6b8a3e1 /gnu | |
parent | b364ad13666b9ae961cde5d563fb43350334f3fc (diff) |
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>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 97c3c91d48..503e0f6e63 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -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") |