me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-bytesize-1.

* gnu/packages/crates-io.scm (rust-bytesize-1): New variable.
master
Maxim Cournoyer 2021-06-03 21:23:12 -04:00
parent c5f0ce2244
commit 25c4ad2771
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 23 additions and 0 deletions

View File

@ -6253,6 +6253,29 @@ little-endian.")
exposed as Reader/Writer streams.")
(license (list license:expat license:asl2.0))))
(define-public rust-bytesize-1
(package
(name "rust-bytesize")
(version "1.0.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "bytesize" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1nl2j2bi9nk3q564jhyb77947wdv5ch54r14gjv4c59s563qd8c1"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-serde" ,rust-serde-1))))
(home-page "https://github.com/hyunsik/bytesize/")
(synopsis "Human-readable byte count representation library for Rust")
(description "ByteSize is an utility for human-readable byte count
representation, with support for both SI and binary units.")
(license license:asl2.0)))
(define-public rust-bzip2-0.3
(package
(inherit rust-bzip2-0.4)