me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-const-format-0.2.

* gnu/packages/crates-io.scm (rust-const-format-0.2): New variable.

Change-Id: I1e6624d0db4034df0c66d4749d863e7c03f45749
master
Efraim Flashner 2024-01-29 09:35:09 +02:00
parent 792506eb7e
commit b7cdeed94d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -11698,6 +11698,31 @@ literals.")
(description "Assertions for const functions.")
(license license:expat)))
(define-public rust-const-format-0.2
(package
(name "rust-const-format")
(version "0.2.32")
(source
(origin
(method url-fetch)
(uri (crate-uri "const_format" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0wvns8mzqwkyciwr00p2g5g4ak7zz8m473di85srj11xmz3i98p3"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-test-flags
'("--release" "--features=__test")
#:cargo-inputs
(("rust-const-format-proc-macros" ,rust-const-format-proc-macros-0.2)
("rust-konst" ,rust-konst-0.2))
#:cargo-development-inputs (("rust-arrayvec" ,rust-arrayvec-0.5)
("rust-fastrand" ,rust-fastrand-1))))
(home-page "https://github.com/rodrimati1992/const_format_crates/")
(synopsis "Compile-time string formatting")
(description "This package provides compile-time string formatting.")
(license license:zlib)))
(define-public rust-const-format-proc-macros-0.2
(package
(name "rust-const-format-proc-macros")