gnu: Add rust-shell-words-0.1.

* gnu/packages/crates-io.scm (rust-shell-words-0.1): New variable.
This commit is contained in:
Efraim Flashner 2020-03-02 22:33:08 +02:00
parent 19781930b7
commit 659ece59ff
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -15747,6 +15747,27 @@ (define-public rust-shared-library-0.1
"This package allows easy binding to, and loading of, shared libraries.")
(license (list license:asl2.0 license:expat))))
(define-public rust-shell-words-0.1
(package
(name "rust-shell-words")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "shell-words" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0jnrw3f174974fsi2hg48l0klpy24767ib28w0xcvi2ll5axxb1r"))))
(build-system cargo-build-system)
(home-page "https://github.com/tmiasko/shell-words")
(synopsis
"Process command line according to parsing rules of UNIX shell")
(description
"Process command line according to parsing rules of UNIX shell.")
(license (list license:expat license:asl2.0))))
(define-public rust-shlex-0.1
(package
(name "rust-shlex")