gnu: Add rust-parking-lot-core-0.7.

* gnu/packages/crates-io.scm (rust-parking-lot-core-0.7): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Valentin Ignatev 2020-01-19 22:19:28 +03:00 committed by Efraim Flashner
parent d9d4d4f9fa
commit f291ce184d
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -9552,6 +9552,37 @@ (define-public rust-parking-lot-0.7
("rust-rand" ,rust-rand-0.4)
("rust-rustc-version" ,rust-rustc-version-0.2))))))
(define-public rust-parking-lot-core-0.7
(package
(name "rust-parking-lot-core")
(version "0.7.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "parking_lot_core" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1wdbrvh35nn09ga570vl5062dpwfbrwgzyrlhhy78ifzhj2870km"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-backtrace" ,rust-backtrace-0.3)
("rust-cfg-if" ,rust-cfg-if-0.1)
("rust-cloudabi" ,rust-cloudabi-0.0)
("rust-libc" ,rust-libc-0.2)
("rust-petgraph" ,rust-petgraph-0.4)
("rust-redox-syscall" ,rust-redox-syscall-0.1)
("rust-smallvec" ,rust-smallvec-1)
("rust-thread-id" ,rust-thread-id-3.3)
("rust-winapi" ,rust-winapi-0.3))))
(home-page "https://github.com/Amanieu/parking_lot")
(synopsis "API for creating custom synchronization primitives")
(description
"An advanced API for creating custom synchronization primitives in Rust.")
(license (list license:asl2.0 license:expat))))
(define-public rust-parking-lot-core-0.6
(package
(name "rust-parking-lot-core")