mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 18:38:57 -05:00
gnu: Add rust-encoding-rs-0.8.
* gnu/packages/crates-io.scm (rust-encoding-rs-0.8): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
d832bcb613
commit
ab5a01f579
1 changed files with 31 additions and 0 deletions
|
@ -2320,6 +2320,37 @@ (define-public rust-encoding-index-tradchinese-1.20141219
|
|||
"Index tables for traditional Chinese character encodings.")
|
||||
(license license:cc0)))
|
||||
|
||||
(define-public rust-encoding-rs-0.8
|
||||
(package
|
||||
(name "rust-encoding-rs")
|
||||
(version "0.8.17")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "encoding_rs" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1v902qqnbd37vdq4rjvp6k05wmghrasfdcjy30gp1xpjg5f7hma1"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-cfg-if" ,rust-cfg-if-0.1)
|
||||
("rust-packed-simd" ,rust-packed-simd-0.3)
|
||||
("rust-serde" ,rust-serde-1.0))
|
||||
#:cargo-development-inputs
|
||||
(("rust-bincode" ,rust-bincode-1.1)
|
||||
("rust-serde-derive" ,rust-serde-derive-1.0)
|
||||
("rust-serde-json" ,rust-serde-json-1.0))))
|
||||
(home-page "https://docs.rs/encoding_rs/")
|
||||
(synopsis "Gecko-oriented implementation of the Encoding Standard")
|
||||
(description
|
||||
"This package provides a Gecko-oriented implementation of the Encoding
|
||||
Standard.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-env-logger-0.6
|
||||
(package
|
||||
(name "rust-env-logger")
|
||||
|
|
Loading…
Reference in a new issue