me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-parking-lot-0.4.

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

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Change-Id: I63832c16c1ded45b7dc0fc9d06fef492377afd6d
Steve George 2023-10-23 23:20:49 +01:00 committed by Efraim Flashner
parent b19590a603
commit 0e274a23b2
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 0 deletions

View File

@ -47922,6 +47922,26 @@ synchronization primitives.")
("rust-rand" ,rust-rand-0.4)
("rust-rustc-version" ,rust-rustc-version-0.2))))))
(define-public rust-parking-lot-0.4
(package
(inherit rust-parking-lot-0.9)
(name "rust-parking-lot")
(version "0.4.8")
(source (origin
(method url-fetch)
(uri (crate-uri "parking-lot" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0ph0kv3dfcxpjbi83wkzammqb7lm95j8in7w7hz17hgkjxdqz78l"))))
(build-system cargo-build-system)
(arguments
(list #:cargo-inputs
`(("rust-parking-lot-core" ,rust-parking-lot-core-0.2)
("rust-owning-ref" ,rust-owning-ref-0.3))
#:cargo-development-inputs
`(("rust-rand" ,rust-rand-0.3))))))
(define-public rust-parking-lot-core-0.9
(package
(name "rust-parking-lot-core")