diff options
author | Herman Rimm <herman@rimm.ee> | 2024-02-18 22:02:20 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:40:49 +0300 |
commit | f2b6fd5485f87b5ee0d70b3c083cfea2375868ed (patch) | |
tree | 9c57d597845c07ce567ad224a77e6f1d03d2ec9f | |
parent | 1bccf3417cacf080b266b6d5b8788a595812d64e (diff) | |
download | guix-f2b6fd5485f87b5ee0d70b3c083cfea2375868ed.tar.gz guix-f2b6fd5485f87b5ee0d70b3c083cfea2375868ed.zip |
gnu: Place rust-rpassword-7 in alphabetical order.
gnu/packages/crates-io.scm (rust-rpassword-7): Move variable.
Change-Id: I81b5f4fc158c9b0e5c3c928ae7ffadac80dc93ff
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index df11e67fcf..f8cc568a5e 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -55618,6 +55618,29 @@ 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-7 + (package + (name "rust-rpassword") + (version "7.2.0") + (source (origin + (method url-fetch) + (uri (crate-uri "rpassword" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "08l3jbjwpsj6awm4lacm2bcj3cn9jhy4j6q21n68k49lmdiwyy36")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-libc" ,rust-libc-0.2) + ("rust-rtoolbox" ,rust-rtoolbox-0.0.1) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/conradkleinespel/rpassword") + (synopsis "Read passwords in Rust console applications") + (description "This package provides a crate for reading passwords in +console applications.") + (license license:asl2.0))) + (define-public rust-rpassword-6 (package (inherit rust-rpassword-7) @@ -56430,29 +56453,6 @@ protocol.") floating-point, and complex numbers based on GMP, MPFR and MPC.") (license license:lgpl3+))) -(define-public rust-rpassword-7 - (package - (name "rust-rpassword") - (version "7.2.0") - (source (origin - (method url-fetch) - (uri (crate-uri "rpassword" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "08l3jbjwpsj6awm4lacm2bcj3cn9jhy4j6q21n68k49lmdiwyy36")))) - (build-system cargo-build-system) - (arguments - `(#:cargo-inputs - (("rust-libc" ,rust-libc-0.2) - ("rust-rtoolbox" ,rust-rtoolbox-0.0.1) - ("rust-winapi" ,rust-winapi-0.3)))) - (home-page "https://github.com/conradkleinespel/rpassword") - (synopsis "Read passwords in Rust console applications") - (description "This package provides a crate for reading passwords in -console applications.") - (license license:asl2.0))) - (define-public rust-run-script-0.10 (package (name "rust-run-script") |