me
/
guix
Archived
1
0
Fork 0

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
Efraim Flashner 2023-10-27 20:39:29 +03:00
parent 6bf16317d2
commit 0f6c4cbed2
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 9 deletions

View File

@ -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)