1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add rust-parse-int@0.6.0.

* gnu/packages/crates-io.scm (rust-parse-int-0.6): New variable.

Change-Id: I89dfe8fe7cbff1608360d27625571c88b3ef7aee
This commit is contained in:
Danny Milosavljevic 2025-05-31 16:40:39 +02:00
parent a99e471ba3
commit f84aa49245
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -40002,6 +40002,30 @@ nor a system allocator.")
"This crate provides efficient parsing of floats from strings.")
(license (list license:expat license:asl2.0))))
(define-public rust-parse-int-0.6
(package
(name "rust-parse-int")
(version "0.6.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "parse_int" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0niwamixgrpzb1k5l035aa40450dnrx69rvvzyy0hb3aj5wmns9d"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-num-traits" ,rust-num-traits-0.2))))
(home-page "https://gitlab.com/dns2utf8/parse_int")
(synopsis "Parse &str with common prefixes to integer values")
(description
"This package provides a way to parse &str with common prefixes to
integer values.")
;; User can choose any of those licenses.
;; The intent is to be equivalent to public domain (CC0-1.0).
(license (list license:asl2.0 license:expat license:boost1.0 license:cc0))))
(define-public rust-lexical-parse-integer-0.8
(package
(name "rust-lexical-parse-integer")