mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: Add rust-shlex.
* gnu/packages/crates-io.scm (rust-shlex): New variable.
This commit is contained in:
parent
b7ca017ad3
commit
9cbb0c97ce
1 changed files with 20 additions and 0 deletions
|
@ -641,6 +641,26 @@ (define-public rust-semver-parser
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-shlex
|
||||||
|
(package
|
||||||
|
(name "rust-shlex")
|
||||||
|
(version "0.1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "shlex" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1lmv6san7g8dv6jdfp14m7bdczq9ss7j7bgsfqyqjc3jnjfippvz"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "https://github.com/comex/rust-shlex")
|
||||||
|
(synopsis "Split a string into shell words, like Python's shlex")
|
||||||
|
(description "This crate provides a method to split a string into shell
|
||||||
|
words, like Python's shlex.")
|
||||||
|
(license (list license:asl2.0
|
||||||
|
license:expat))))
|
||||||
|
|
||||||
(define-public rust-unicode-xid
|
(define-public rust-unicode-xid
|
||||||
(package
|
(package
|
||||||
(name "rust-unicode-xid")
|
(name "rust-unicode-xid")
|
||||||
|
|
Loading…
Reference in a new issue