mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: Add rust-thread-local-1.0.
* gnu/packages/crates-io.scm (rust-thread-local-1.0): New variable. (rust-thread-local-0.3): Inherit from rust-thread-local-1.0. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
8f414fa29d
commit
d9b2c855bf
1 changed files with 22 additions and 8 deletions
|
@ -11413,8 +11413,29 @@ (define-public rust-thread-id-3.3
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-thread-local-1.0
|
||||
(package
|
||||
(name "rust-thread-local")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "thread_local" version))
|
||||
(file-name (string-append name "-" version ".crate"))
|
||||
(sha256
|
||||
(base32
|
||||
"054vlrr1vsdy1h4b7n99mr24pnj8928ig9qwzg36wnkld4dns36l"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/Amanieu/thread_local-rs")
|
||||
(synopsis "Per-object thread-local storage")
|
||||
(description "Per-object thread-local storage")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-thread-local-0.3
|
||||
(package
|
||||
(inherit rust-thread-local-1.0)
|
||||
(name "rust-thread-local")
|
||||
(version "0.3.6")
|
||||
(source
|
||||
|
@ -11424,14 +11445,7 @@ (define-public rust-thread-local-0.3
|
|||
(file-name (string-append name "-" version ".crate"))
|
||||
(sha256
|
||||
(base32
|
||||
"06rzik99p8c5js8238yhc8rk6np543ylb1dy9nrw5v80j0r3xdf6"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/Amanieu/thread_local-rs")
|
||||
(synopsis "Per-object thread-local storage")
|
||||
(description "Per-object thread-local storage")
|
||||
(properties '((hidden? . #t)))
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
"06rzik99p8c5js8238yhc8rk6np543ylb1dy9nrw5v80j0r3xdf6"))))))
|
||||
|
||||
(define-public rust-threadpool-1.7
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue