efraim pushed a commit to branch rust-team in repository guix. commit 8c1a49152d91159be70b163de319ffeda473f4c6 Author: Efraim Flashner <efr...@flashner.co.il> AuthorDate: Fri Oct 27 20:39:29 2023 +0300
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 --- gnu/packages/crates-io.scm | 31 ++++++++++++++++++++++--------- 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 9cdf963dbc..30fb5b62f2 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -13429,17 +13429,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") @@ -13450,6 +13450,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)