diff options
author | Herman Rimm <herman@rimm.ee> | 2024-02-18 22:02:19 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:40:48 +0300 |
commit | 1bccf3417cacf080b266b6d5b8788a595812d64e (patch) | |
tree | a5ce5a0594cea8dd75eca80d81df24a8fdbc0613 /gnu | |
parent | 8697e5f0415cbae338b8b8b14d288f1a5376de7e (diff) | |
download | guix-1bccf3417cacf080b266b6d5b8788a595812d64e.tar.gz guix-1bccf3417cacf080b266b6d5b8788a595812d64e.zip |
gnu: Place rust-rpassword-6 in alphabetical order.
gnu/packages/crates-io.scm (rust-rpassword-6): Move variable.
Change-Id: I5f4ea411df53fdfeaf71bcc0dd8639c0c47ab3c7
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index c6bf096cfb..df11e67fcf 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -55618,6 +55618,25 @@ can handle huge texts and memory-incoherent edits with ease.") "This package provides a library for generic lossless syntax trees.") (license (list license:expat license:asl2.0)))) +(define-public rust-rpassword-6 + (package + (inherit rust-rpassword-7) + (name "rust-rpassword") + (version "6.0.1") + (source (origin + (method url-fetch) + (uri (crate-uri "rpassword" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0mnrpxvai78mn9wqkqx8wp1gd280jjhn29ixd1dm84l6i2hrkw1b")))) + (arguments + `(#:cargo-inputs + (("rust-libc" ,rust-libc-0.2) + ("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-winapi" ,rust-winapi-0.3)))))) + (define-public rust-rpassword-5 (package (inherit rust-rpassword-6) @@ -56434,25 +56453,6 @@ floating-point, and complex numbers based on GMP, MPFR and MPC.") console applications.") (license license:asl2.0))) -(define-public rust-rpassword-6 - (package - (inherit rust-rpassword-7) - (name "rust-rpassword") - (version "6.0.1") - (source (origin - (method url-fetch) - (uri (crate-uri "rpassword" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "0mnrpxvai78mn9wqkqx8wp1gd280jjhn29ixd1dm84l6i2hrkw1b")))) - (arguments - `(#:cargo-inputs - (("rust-libc" ,rust-libc-0.2) - ("rust-serde" ,rust-serde-1) - ("rust-serde-json" ,rust-serde-json-1) - ("rust-winapi" ,rust-winapi-0.3)))))) - (define-public rust-run-script-0.10 (package (name "rust-run-script") |