gnu: rust-thread-id: Add 4.0.0.
* gnu/packages/crates-io.scm (rust-thread-id-4): New variable. (rust-thread-id-3): Inherit from it.
This commit is contained in:
parent
fabcbb5ff4
commit
069733a848
1 changed files with 26 additions and 8 deletions
|
@ -62368,24 +62368,23 @@ handle Unicode characters correctly.")
|
||||||
@code{thiserror} crate.")
|
@code{thiserror} crate.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-thread-id-3
|
(define-public rust-thread-id-4
|
||||||
(package
|
(package
|
||||||
(name "rust-thread-id")
|
(name "rust-thread-id")
|
||||||
(version "3.3.0")
|
(version "4.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "thread-id" version))
|
(uri (crate-uri "thread-id" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0zvikdngp0950hi0jgiipr8l36rskk1wk7pc8cd43xr3g5if1psz"))))
|
||||||
"1h90v19fjz3x9b25ywh68z5yf2zsmm6h5zb4rl302ckbsp4z9yy7"))))
|
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-libc" ,rust-libc-0.2)
|
(("rust-libc" ,rust-libc-0.2)
|
||||||
("rust-redox-syscall" ,rust-redox-syscall-0.1)
|
("rust-redox-syscall" ,rust-redox-syscall-0.2)
|
||||||
("rust-winapi" ,rust-winapi-0.3))))
|
("rust-winapi" ,rust-winapi-0.3))))
|
||||||
(home-page "https://github.com/ruuda/thread-id")
|
(home-page "https://github.com/ruuda/thread-id")
|
||||||
(synopsis "Get a unique ID for the current thread in Rust")
|
(synopsis "Get a unique ID for the current thread in Rust")
|
||||||
(description
|
(description
|
||||||
|
@ -62394,6 +62393,25 @@ different for every thread.")
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-thread-id-3
|
||||||
|
(package
|
||||||
|
(inherit rust-thread-id-4)
|
||||||
|
(name "rust-thread-id")
|
||||||
|
(version "3.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "thread-id" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1h90v19fjz3x9b25ywh68z5yf2zsmm6h5zb4rl302ckbsp4z9yy7"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-redox-syscall" ,rust-redox-syscall-0.1)
|
||||||
|
("rust-winapi" ,rust-winapi-0.3))))))
|
||||||
|
|
||||||
(define-public rust-thread-id-2
|
(define-public rust-thread-id-2
|
||||||
(package
|
(package
|
||||||
(inherit rust-thread-id-3)
|
(inherit rust-thread-id-3)
|
||||||
|
|
Reference in a new issue