me
/
guix
Archived
1
0
Fork 0

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
master
Efraim Flashner 2024-03-18 11:34:44 +02:00
parent a4686a7f5c
commit 90ff2cd9f2
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 3 deletions

View File

@ -61985,17 +61985,17 @@ sub-processes using a fork-like interface.")
("rust-rustyline-derive" ,rust-rustyline-derive-0.3) ("rust-rustyline-derive" ,rust-rustyline-derive-0.3)
("rust-tempfile" ,rust-tempfile-3)))))) ("rust-tempfile" ,rust-tempfile-3))))))
(define-public rust-rustyline-derive-0.9 (define-public rust-rustyline-derive-0.10
(package (package
(name "rust-rustyline-derive") (name "rust-rustyline-derive")
(version "0.9.0") (version "0.10.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "rustyline-derive" version)) (uri (crate-uri "rustyline-derive" version))
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "0hvaj1n0k7ys8iqfxvymmakv9aqqpvm53hagw55jw7954xaaycjs")))) (base32 "0lfr25qdrn0awccq999d6g8m7bhsyxbkliibdpzimbzniff9bbz5"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1) `(#: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.") (description "This package provides Rustyline macros implementation in Rust.")
(license license:expat))) (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 (define-public rust-rustyline-derive-0.7
(package (package
(inherit rust-rustyline-derive-0.9) (inherit rust-rustyline-derive-0.9)