diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-27 20:39:29 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-11-28 07:58:48 +0200 |
commit | 0f6c4cbed29fce82d0ee9580c957526a9823f52c (patch) | |
tree | be3c6e43bfcbdccfe10699f2323e73efba41d59b | |
parent | 6bf16317d2cffb8ffd7925fe57c48c4f84ddaedb (diff) | |
download | guix-0f6c4cbed29fce82d0ee9580c957526a9823f52c.tar.gz guix-0f6c4cbed29fce82d0ee9580c957526a9823f52c.zip |
gnu: Add rust-clap-lex-0.6.
* gnu/packages/crates-io.scm (rust-clap-lex-0.6): New variable.
(rust-clap-lex-0.5): Inherit from rust-clap-lex-0.6.
Change-Id: I4fdfa4d14d0cb3784dd4381621dd3cdbd79c0c96
-rw-r--r-- | gnu/packages/crates-io.scm | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index a9f8b19c1b..9185c20baa 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -13444,17 +13444,17 @@ for programs written with Clap.") with Clap to generate Fig completion scripts.") (license (list license:expat license:asl2.0)))) -(define-public rust-clap-lex-0.5 +(define-public rust-clap-lex-0.6 (package (name "rust-clap-lex") - (version "0.5.0") - (source (origin - (method url-fetch) - (uri (crate-uri "clap-lex" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "06vcvpvp65qggc5agbirzqk2di00gxg6vazzc3qlwzkw70qxm9id")))) + (version "0.6.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "clap-lex" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1l8bragdvim7mva9flvd159dskn2bdkpl0jqrr41wnjfn8pcfbvh")))) (build-system cargo-build-system) (home-page "https://github.com/clap-rs/clap/tree/master/clap_lex") (synopsis "Command line parser for Clap") @@ -13465,6 +13465,19 @@ stream of tokens.") ;; The user can choose either license. (license (list license:expat license:asl2.0)))) +(define-public rust-clap-lex-0.5 + (package + (inherit rust-clap-lex-0.6) + (name "rust-clap-lex") + (version "0.5.0") + (source (origin + (method url-fetch) + (uri (crate-uri "clap-lex" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "06vcvpvp65qggc5agbirzqk2di00gxg6vazzc3qlwzkw70qxm9id")))))) + (define-public rust-clap-lex-0.3 (package (inherit rust-clap-lex-0.5) |