me
/
guix
Archived
1
0
Fork 0

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>
master
John Soo 2019-12-20 08:34:42 -08:00 committed by Efraim Flashner
parent 0c5b3abe7b
commit f041cdbe8e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -6381,6 +6381,31 @@ synchronization primitives.")
("rust-rand" ,rust-rand-0.4) ("rust-rand" ,rust-rand-0.4)
("rust-rustc-version" ,rust-rustc-version-0.2)))))) ("rust-rustc-version" ,rust-rustc-version-0.2))))))
(define-public rust-parking-lot-0.7
(package
(inherit rust-parking-lot-0.9)
(name "rust-parking-lot")
(version "0.7.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "parking_lot" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0dz32cqx9200n1lk3kwyb599vabfid3f8sj1aq85sw42s2pb8hdb"))))
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-lock-api" ,rust-lock-api-0.1)
("rust-parking-lot-core" ,rust-parking-lot-core-0.4))
#:cargo-development-inputs
(("rust-bincode" ,rust-bincode-1.1)
("rust-lazy-static" ,rust-lazy-static-1.3)
("rust-rand" ,rust-rand-0.4)
("rust-rustc-version" ,rust-rustc-version-0.2))))))
(define-public rust-parking-lot-core-0.6 (define-public rust-parking-lot-core-0.6
(package (package
(name "rust-parking-lot-core") (name "rust-parking-lot-core")