unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: jgart via Guix-patches via <guix-patches@gnu.org>
To: 59389@debbugs.gnu.org
Cc: jgart <jgart@dismail.de>
Subject: [bug#59389] [PATCH v2 23/26] gnu: Add rust-clap-complete-3.
Date: Sat, 19 Nov 2022 13:14:18 -0600	[thread overview]
Message-ID: <20221119191420.27559-23-jgart@dismail.de> (raw)
In-Reply-To: <20221119191420.27559-1-jgart@dismail.de>

* gnu/packages/crates-io.scm (rust-clap-complete-3): New variable.
---
 gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index d71486a3ae..a96fbf5a1f 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -68733,6 +68733,33 @@ (define-public rust-clap-conf-0.1
       "This package provides a library to unify commandline arguments with config files and environment variables.  And make it easier for users to tell your program how to behave across the three main input sources")
     (license license:expat)))
 
+(define-public rust-clap-complete-3
+  (package
+    (name "rust-clap-complete")
+    (version "3.2.5")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "clap_complete" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1n3whjkznszrxif1hzvql7hav7agq85j456fmwjwwi9cjq52wyiz"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-clap" ,rust-clap-3)
+                       ("rust-clap-lex" ,rust-clap-lex-0.2)
+                       ("rust-is-executable" ,rust-is-executable-1)
+                       ("rust-os-str-bytes" ,rust-os-str-bytes-6)
+                       ("rust-pathdiff" ,rust-pathdiff-0.2)
+                       ("rust-shlex" ,rust-shlex-1)
+                       ("rust-unicode-xid" ,rust-unicode-xid-0.2))))
+    (home-page "https://github.com/clap-rs/clap/tree/master/clap_complete")
+    (synopsis "Generate shell completion scripts for your clap::Command")
+    (description
+"This package generates shell completion scripts for your @code{clap::Command}.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-clap-lex-0.2
   (package
     (name "rust-clap-lex")
-- 
2.38.1





  parent reply	other threads:[~2022-11-19 19:17 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-19 18:42 [bug#59389] [PATCH 1/26] gnu: Add pastel jgart via Guix-patches via
2022-11-19 18:45 ` [bug#59389] [PATCH 01/26] gnu: Add rust-windows-x86-64-gnullvm-0.42 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 02/26] gnu: Add rust-windows-x86-64-msvc-0.42 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 03/26] gnu: Add rust-textwrap-0.16 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 04/26] gnu: rust-pathdiff-0.2: Update to 0.2.1 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 05/26] gnu: rust-unicode-linebreak-0.1: Update to 0.1.4 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 06/26] gnu: rust-unicode-xid-0.2: Update to 0.2.4 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 07/26] gnu: Add rust-clap-lex-0.2 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 08/26] gnu: Add rust-windows-sys-0.42 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 09/26] gnu: Add rust-windows-aarch64-gnullvm-0.42 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 10/26] gnu: Add rust-windows-i686-gnu-0.42 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 11/26] gnu: Add rust-windows-i686-msvc-0.42 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 12/26] gnu: Add rust-windows-x86-64-gnu-0.42 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 13/26] gnu: Add rust-wasi-0.11 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 14/26] gnu: Add rust-terminal-size-0.2 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 15/26] gnu: Add rust-fs-err-2 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 16/26] gnu: rust-async-std-1: Update to 1.12.0 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 17/26] gnu: rust-autocfg-1: Update to 1.1.0 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 18/26] gnu: rust-compiler-builtins-0.1: Update to 0.1.84 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 19/26] gnu: rust-errno-0.2: Update to 0.2.8 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 20/26] gnu: rust-libc-0.2: Update to 0.2.137 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 21/26] gnu: rust-mio-0.8: Update to 0.8.5 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 22/26] gnu: rust-tokio-1: Update to 1.22.0 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 23/26] gnu: Add rust-clap-complete-3 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 24/26] gnu: rust-clap-derive-3: Update to 3.2.18 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 25/26] gnu: rust-clap-3: Update to 3.2.23 jgart via Guix-patches via
2022-11-19 18:45   ` [bug#59389] [PATCH 26/26] gnu: Add pastel jgart via Guix-patches via
2022-11-19 19:13 ` [bug#59389] [PATCH v2 01/26] gnu: Add rust-windows-x86-64-gnullvm-0.42 jgart via Guix-patches via
2022-11-19 19:13   ` [bug#59389] [PATCH v2 02/26] gnu: Add rust-windows-x86-64-msvc-0.42 jgart via Guix-patches via
2022-11-19 19:13   ` [bug#59389] [PATCH v2 03/26] gnu: Add rust-textwrap-0.16 jgart via Guix-patches via
2022-11-19 19:13   ` [bug#59389] [PATCH v2 04/26] gnu: rust-pathdiff-0.2: Update to 0.2.1 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 05/26] gnu: rust-unicode-linebreak-0.1: Update to 0.1.4 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 06/26] gnu: rust-unicode-xid-0.2: Update to 0.2.4 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 07/26] gnu: Add rust-clap-lex-0.2 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 08/26] gnu: Add rust-windows-sys-0.42 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 09/26] gnu: Add rust-windows-aarch64-gnullvm-0.42 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 10/26] gnu: Add rust-windows-i686-gnu-0.42 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 11/26] gnu: Add rust-windows-i686-msvc-0.42 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 12/26] gnu: Add rust-windows-x86-64-gnu-0.42 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 13/26] gnu: Add rust-wasi-0.11 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 14/26] gnu: Add rust-terminal-size-0.2 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 15/26] gnu: Add rust-fs-err-2 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 16/26] gnu: rust-async-std-1: Update to 1.12.0 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 17/26] gnu: rust-autocfg-1: Update to 1.1.0 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 18/26] gnu: rust-compiler-builtins-0.1: Update to 0.1.84 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 19/26] gnu: rust-errno-0.2: Update to 0.2.8 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 20/26] gnu: rust-libc-0.2: Update to 0.2.137 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 21/26] gnu: rust-mio-0.8: Update to 0.8.5 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 22/26] gnu: rust-tokio-1: Update to 1.22.0 jgart via Guix-patches via
2022-11-19 19:14   ` jgart via Guix-patches via [this message]
2022-11-19 19:14   ` [bug#59389] [PATCH v2 24/26] gnu: rust-clap-derive-3: Update to 3.2.18 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 25/26] gnu: rust-clap-3: Update to 3.2.23 jgart via Guix-patches via
2022-11-19 19:14   ` [bug#59389] [PATCH v2 26/26] gnu: Add pastel jgart via Guix-patches via

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=20221119191420.27559-23-jgart@dismail.de \
    --to=guix-patches@gnu.org \
    --cc=59389@debbugs.gnu.org \
    --cc=jgart@dismail.de \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).