efraim pushed a commit to branch rust-team
in repository guix.
commit c8c9336758380d5b6eb28ee4f91fa0b3b7903ef0
Author: Herman Rimm <[email protected]>
AuthorDate: Tue Dec 24 21:11:02 2024 +0100
gnu: rust-paw-1: Order alphabetically.
* gnu/packages/crates-io.scm (rust-paw-1): Order.
Change-Id: Ia944707f5a8a9767cefe41c85270e0ec088782db
Signed-off-by: Efraim Flashner <[email protected]>
---
gnu/packages/crates-io.scm | 52 +++++++++++++++++++++++-----------------------
1 file changed, 26 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f0c76ff64b..89df0fa3fc 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -56764,6 +56764,32 @@ algebra.")
(description "This package provides Search for files in PATH.")
(license license:expat)))
+(define-public rust-paw-1
+ (package
+ (name "rust-paw")
+ (version "1.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "paw" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1sc481y42rb08hmww525m4539ppl8k0w14kwxp13vg2dasdzrh09"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:tests? #f ; `async_await` has been stable since `1.39.0`
+ #:cargo-inputs
+ (("rust-paw-attributes" ,rust-paw-attributes-1)
+ ("rust-paw-raw" ,rust-paw-raw-1))
+ #:cargo-development-inputs
+ (("rust-paw-structopt" ,rust-paw-structopt-1)
+ ("rust-runtime" ,rust-runtime-0.3)
+ ("rust-structopt" ,rust-structopt-0.2))))
+ (home-page "https://github.com/rust-cli/paw")
+ (synopsis "CLI argument parser")
+ (description "This package provides a CLI argument parser.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-pcap-1
(package
(name "rust-pcap")
@@ -78289,32 +78315,6 @@ designed for @code{immutable.rs}.")
data type.")
(license license:expat)))
-(define-public rust-paw-1
- (package
- (name "rust-paw")
- (version "1.0.0")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "paw" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "1sc481y42rb08hmww525m4539ppl8k0w14kwxp13vg2dasdzrh09"))))
- (build-system cargo-build-system)
- (arguments
- `(#:tests? #f ; `async_await` has been stable since `1.39.0`
- #:cargo-inputs
- (("rust-paw-attributes" ,rust-paw-attributes-1)
- ("rust-paw-raw" ,rust-paw-raw-1))
- #:cargo-development-inputs
- (("rust-paw-structopt" ,rust-paw-structopt-1)
- ("rust-runtime" ,rust-runtime-0.3)
- ("rust-structopt" ,rust-structopt-0.2))))
- (home-page "https://github.com/rust-cli/paw")
- (synopsis "CLI argument parser")
- (description "This package provides a CLI argument parser.")
- (license (list license:expat license:asl2.0))))
-
(define-public rust-paw-attributes-1
(package
(name "rust-paw-attributes")