diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-18 11:34:44 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:42:54 +0300 |
commit | 90ff2cd9f2ceebfe18d11bb84a6684693acad08e (patch) | |
tree | 919737b0402f8a869dc87a48b501e5f7f0a3e50a /gnu/packages | |
parent | a4686a7f5cf046698f7c682544163ec3ef192f0d (diff) | |
download | guix-90ff2cd9f2ceebfe18d11bb84a6684693acad08e.tar guix-90ff2cd9f2ceebfe18d11bb84a6684693acad08e.tar.gz |
gnu: Add rust-rustyline-derive-0.10.
* gnu/packages/crates-io.scm (rust-rustyline-derive-0.10): New variable.
(rust-rustyline-derive-0.9): Inherit from rust-rustyline-derive-0.10.
Change-Id: I79d2f842931132139b290a26ff107785af1fc14a
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-io.scm | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index b39ececf4e..b680f67240 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -61985,17 +61985,17 @@ sub-processes using a fork-like interface.") ("rust-rustyline-derive" ,rust-rustyline-derive-0.3) ("rust-tempfile" ,rust-tempfile-3)))))) -(define-public rust-rustyline-derive-0.9 +(define-public rust-rustyline-derive-0.10 (package (name "rust-rustyline-derive") - (version "0.9.0") + (version "0.10.0") (source (origin (method url-fetch) (uri (crate-uri "rustyline-derive" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0hvaj1n0k7ys8iqfxvymmakv9aqqpvm53hagw55jw7954xaaycjs")))) + (base32 "0lfr25qdrn0awccq999d6g8m7bhsyxbkliibdpzimbzniff9bbz5")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1) @@ -62006,6 +62006,23 @@ sub-processes using a fork-like interface.") (description "This package provides Rustyline macros implementation in Rust.") (license license:expat))) +(define-public rust-rustyline-derive-0.9 + (package + (inherit rust-rustyline-derive-0.10) + (name "rust-rustyline-derive") + (version "0.9.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "rustyline-derive" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0hvaj1n0k7ys8iqfxvymmakv9aqqpvm53hagw55jw7954xaaycjs")))) + (arguments + `(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-2)))))) + (define-public rust-rustyline-derive-0.7 (package (inherit rust-rustyline-derive-0.9) |