gnu: Add rust-compound-duration-1.

* gnu/packages/crates-io.scm (rust-compound-duration-1): New variable.

Change-Id: I12876b700a8b555ac86c6f3806a2eb0acffd869b
This commit is contained in:
Efraim Flashner 2023-10-23 22:29:59 +03:00
parent 129455f269
commit 9fd58590e3
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -14353,6 +14353,25 @@ (define-public rust-compact-str-0.7
stores strings on the stack, when possible.")
(license license:expat)))
(define-public rust-compound-duration-1
(package
(name "rust-compound-duration")
(version "1.2.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "compound-duration" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0rb5kasd7044xxb73wz2qqxv6iwawp9gipvqhya8yybafh7a679r"))))
(build-system cargo-build-system)
(home-page "https://docs.rs/compound_duration/latest/compound_duration/")
(synopsis "Convert seconds to compound duration")
(description
"Convert seconds to compound duration, such as: week, days, hours,
minutes, seconds.")
(license license:bsd-3)))
(define-public rust-const-cstr-0.3
(package
(name "rust-const-cstr")