gnu: Add rust-humansize-2.
* gnu/packages/crates-io.scm (rust-humansize-2): New variable. (rust-humansize-1): Inherit from rust-humansize-2.
This commit is contained in:
parent
f4e1cd5af5
commit
99bc23bc66
1 changed files with 24 additions and 9 deletions
|
@ -28944,10 +28944,31 @@ (define-public rust-humantime-serde-1
|
|||
"This package provides a Humantime serialization timestamp format.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-humansize-1
|
||||
(define-public rust-humansize-2
|
||||
(package
|
||||
(name "rust-humansize")
|
||||
(version "1.1.0")
|
||||
(version "2.1.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "humansize" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1msxd1akb3dydsa8qs461sds9krwnn31szvqgaq93p4x0ad1rdbc"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-libm" ,rust-libm-0.2))))
|
||||
(home-page "https://github.com/LeopoldArkham/humansize")
|
||||
(synopsis "Represent file sizes in a human-readable format")
|
||||
(description "This package provides a configurable crate to easily
|
||||
represent file sizes in a human-readable format.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-humansize-1
|
||||
(package
|
||||
(inherit rust-humansize-2)
|
||||
(name "rust-humansize")
|
||||
(version "1.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
|
@ -28955,13 +28976,7 @@ (define-public rust-humansize-1
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0piadmwjah1jv6q288im4za9szlgalzjyq2811w35i6gg9ib5jmn"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/LeopoldArkham/humansize")
|
||||
(synopsis "Represent file sizes in a human-readable format")
|
||||
(description "This package provides a configurable crate to easily
|
||||
represent file sizes in a human-readable format.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
"09nh6xyssghjajvip9crd79i4a40nw8r4bdwwg3dg5l7rfb6ja82"))))))
|
||||
|
||||
(define-public rust-humantime-2
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue