mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 20:57:12 -05:00
gnu: Add rust-rustc-hex-2.
* gnu/packages/crates-io.scm (rust-rustc-hex-2): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
a404ca13c6
commit
6c1cf7da24
1 changed files with 19 additions and 0 deletions
|
@ -46049,6 +46049,25 @@ (define-public rust-rustc-hash-1
|
|||
"This package provides a speedy, non-cryptographic hash used in rustc.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-rustc-hex-2
|
||||
(package
|
||||
(name "rust-rustc-hex")
|
||||
(version "2.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rustc-hex" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1mkjy2vbn5kzg67wgngwddlk4snmd8mkjkql2dzrzzfh6ajzcx9y"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments `(#:skip-build? #t))
|
||||
(home-page "https://github.com/debris/rustc-hex")
|
||||
(synopsis "Rustc-serialize compatible hex conversion traits")
|
||||
(description "This package provides rustc-serialize compatible hex
|
||||
conversion traits.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-rustc-rayon-0.3
|
||||
(package
|
||||
(name "rust-rustc-rayon")
|
||||
|
|
Loading…
Reference in a new issue