me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-core-arch-0.1.

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

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-14 18:17:18 -08:00 committed by Efraim Flashner
parent d616284320
commit 5d8dfefbac
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 0 deletions

View File

@ -929,6 +929,32 @@ It is inspired by the Linux kernel's @code{crypto_memneq}.")
(properties '((hidden? . #t)))
(license license:cc0)))
(define-public rust-core-arch-0.1
(package
(name "rust-core-arch")
(version "0.1.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "core_arch" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"04vdvr9vj0f1cv2p54nsszmrrk9w1js4c0z4i0bdlajl1lydslim"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-development-inputs
(("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))
(home-page "https://github.com/rust-lang/stdarch")
(synopsis
"Rust's core library architecture-specific intrinsics")
(description
"@code{core::arch} - Rust's core library architecture-specific
intrinsics.")
(license (list license:expat license:asl2.0))))
(define-public rust-core-foundation-sys-0.6
(package
(name "rust-core-foundation-sys")