diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-07-26 12:05:42 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-08-14 19:38:16 +0300 |
commit | e6bb04a7c668a8be79e04e63aca76cc800d910b8 (patch) | |
tree | d1fdcc0fcf463f52eb9e94a4703f3cb3afe66d01 /gnu | |
parent | 968ab3154b4ad5ea4377b3d446071d16303fd3ac (diff) | |
download | guix-e6bb04a7c668a8be79e04e63aca76cc800d910b8.tar.gz |
gnu: Add rust-dialoguer-0.10.
* gnu/packages/crates-io.scm (rust-dialoguer-0.10): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 875f4ebf14..4e01102e12 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -19392,6 +19392,30 @@ procedural macros.") example.") (license license:bsd-3))) +(define-public rust-dialoguer-0.10 + (package + (name "rust-dialoguer") + (version "0.10.4") + (source (origin + (method url-fetch) + (uri (crate-uri "dialoguer" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "11rgzrhi677w9gf1r3ip2x361svdkjkr2m5dsfca9fcljacg5ijr")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-console" ,rust-console-0.15) + ("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3) + ("rust-shell-words" ,rust-shell-words-1) + ("rust-tempfile" ,rust-tempfile-3) + ("rust-zeroize" ,rust-zeroize-1)))) + (home-page "https://github.com/mitsuhiko/dialoguer") + (synopsis "Command line prompting library") + (description "This package provides a command line prompting library.") + (license license:expat))) + (define-public rust-diesel-1 (package (name "rust-diesel") |