me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-cstr-0.2.

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

Change-Id: Ia798138da246cd30420abe890e45cee5d1051b2d
master
Efraim Flashner 2024-03-28 21:40:00 +02:00
parent add9501e53
commit 8441e3ab01
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -17840,6 +17840,28 @@ number ``crunching``.")
(description "Bare bones CSV parsing with no_std support.")
(license (list license:unlicense license:expat))))
(define-public rust-cstr-0.2
(package
(name "rust-cstr")
(version "0.2.12")
(source
(origin
(method url-fetch)
(uri (crate-uri "cstr" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0dj6ll9ry27kn4k0vvhlvbhn9dyyr9haxnd06bxaqnmfr01kjlk8"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1))
#:cargo-development-inputs (("rust-trybuild" ,rust-trybuild-1))))
(home-page "https://github.com/upsuper/cstr")
(synopsis "Macro for building static CStr reference")
(description
"This package provides the macro for building static CStr reference.")
(license license:expat)))
(define-public rust-cstr-core-0.2
(package
(name "rust-cstr-core")