all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jordan Moore <lockbox@struct.foo>
To: 73329@debbugs.gnu.org
Cc: Jordan Moore <lockbox@struct.foo>,
	Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#73329] [PATCH 6/7] gnu: Add rust-clap-derive-4.3.
Date: Wed, 18 Sep 2024 07:05:45 -0400	[thread overview]
Message-ID: <0bcd8302b92b91a268714459d687f68ae176da6a.1726623493.git.lockbox@struct.foo> (raw)
In-Reply-To: <cover.1726623493.git.lockbox@struct.foo>

* gnu/packages/crates-io.scm (rust-clap-derive-4.3): New variable.
* gnu/packages/crates-io.scm (rust-clap-builder-4.3): New variable.
* gnu/packages/crates-io.scm (rust-clap-4.3): New variable.

Change-Id: I951e20182868f71c05cf95d84807099ac6a3ca36
---
 gnu/packages/crates-io.scm | 80 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 80 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b8131647ca..87636074a4 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -12991,6 +12991,86 @@ (define-public rust-clap-derive-3
              ("rust-quote" ,rust-quote-1)
              ("rust-syn" ,rust-syn-1))))))
 
+(define-public rust-clap-derive-4.3
+  (package
+    (name "rust-clap-derive")
+    (version "4.3.12")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "clap_derive" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0l50j37jwbzfl29bd2a1ib7z1jpch4b9868himrgwpgwb1bvpaal"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-heck" ,rust-heck-0.4)
+                             ("rust-proc-macro2" ,rust-proc-macro2-1)
+                             ("rust-quote" ,rust-quote-1)
+                             ("rust-syn" ,rust-syn-2))))
+    (home-page "https://github.com/clap-rs/clap")
+    (synopsis "Parse command line argument by defining a struct, derive crate")
+    (description
+     "This package provides Parse command line argument by defining a struct, derive crate.")
+    (license (list license:expat license:asl2.0))))
+
+(define-public rust-clap-builder-4.3
+  (package
+    (name "rust-clap-builder")
+    (version "4.3.24")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "clap_builder" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "03l6d45csywv8xazs44jwy1hk2jbvznn7mj8dw7p93bdq5mykljy"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-anstream" ,rust-anstream-0.3)
+                             ("rust-anstyle" ,rust-anstyle-1)
+                             ("rust-backtrace" ,rust-backtrace-0.3)
+                             ("rust-clap-lex" ,rust-clap-lex-0.5)
+                             ("rust-once-cell" ,rust-once-cell-1)
+                             ("rust-strsim" ,rust-strsim-0.10)
+                             ("rust-terminal-size" ,rust-terminal-size-0.2)
+                             ("rust-unicase" ,rust-unicase-2)
+                             ("rust-unicode-width" ,rust-unicode-width-0.1.13))))
+    (home-page "https://github.com/clap-rs/clap")
+    (synopsis
+     "simple to use, efficient, and full-featured Command Line Argument Parser")
+    (description
+     "This package provides a simple to use, efficient, and full-featured Command Line
+Argument Parser.")
+    (license (list license:expat license:asl2.0))))
+
+(define-public rust-clap-4.3
+  (package
+    (name "rust-clap")
+    (version "4.3.24")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "clap" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "11z4695sw0kp1s4rfnfdgg19n6xllcp297z5mmx0s344qy0hwsgv"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-clap-builder" ,rust-clap-builder-4.3)
+                             ("rust-clap-derive" ,rust-clap-derive-4.3)
+                             ("rust-once-cell" ,rust-once-cell-1))))
+    (home-page "https://github.com/clap-rs/clap")
+    (synopsis
+     "simple to use, efficient, and full-featured Command Line Argument Parser")
+    (description
+     "This package provides a simple to use, efficient, and full-featured Command Line
+Argument Parser.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-clap-4
   (package
     (name "rust-clap")
-- 
2.44.2





  parent reply	other threads:[~2024-09-18 13:41 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-18  1:58 [bug#73329] [PATCH 0/7] Add lsd utility Jordan Moore
2024-09-18 11:05 ` [bug#73329] [PATCH 1/7] gnu: Add rust-windows-0.43 Jordan Moore
2024-09-18 11:05 ` [bug#73329] [PATCH 2/7] gnu: Add rust-term-grid-0.1 Jordan Moore
2024-09-18 11:05 ` [bug#73329] [PATCH 3/7] gnu: Add rust-unicode-width-0.1.13 Jordan Moore
2024-09-18 11:05 ` [bug#73329] [PATCH 4/7] gnu: Add rust-vsort-0.2 Jordan Moore
2024-09-18 11:05 ` [bug#73329] [PATCH 5/7] gnu: Add rust-human-sort-0.2 Jordan Moore
2024-09-18 11:05 ` Jordan Moore [this message]
2024-09-18 11:05 ` [bug#73329] [PATCH 7/7] gnu: Add lsd Jordan Moore

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0bcd8302b92b91a268714459d687f68ae176da6a.1726623493.git.lockbox@struct.foo \
    --to=lockbox@struct.foo \
    --cc=73329@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.