efraim pushed a commit to branch rust-team
in repository guix.
commit 0c4f1bc2958d3152f82443591d023c5f86e56a57
Author: Herman Rimm <[email protected]>
AuthorDate: Tue Dec 24 16:32:36 2024 +0100
gnu: rust-cstr-0.2: Order alphabetically.
* gnu/packages/crates-io.scm (rust-cstr-0.2): Order.
Change-Id: I8a21224524757791d0fdaa92b25a32860c9c1e1d
Signed-off-by: Efraim Flashner <[email protected]>
---
gnu/packages/crates-io.scm | 44 ++++++++++++++++++++++----------------------
1 file changed, 22 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f91a4c1be9..a80eea8391 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -19794,6 +19794,28 @@ number ``crunching``.")
"This package provides the procedural macros for rust-cssparser.")
(license license:mpl2.0)))
+(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-csv-1
(package
(name "rust-csv")
@@ -19913,28 +19935,6 @@ number ``crunching``.")
(description "On disk CSV indexing data structures.")
(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")