1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-25 11:40:30 +02:00

gnu: Add rust-lexopt-0.2.

* gnu/packages/crates-io.scm (rust-lexopt-0.2): New variable.
This commit is contained in:
Efraim Flashner
2022-01-13 18:32:49 +02:00
parent 24dbd44bdc
commit c1d82f4aac

View File

@@ -27701,6 +27701,24 @@ nor a system allocator.")
("rust-serde-derive" ,rust-serde-derive-1)
("rust-toml" ,rust-toml-0.5))))))
(define-public rust-lexopt-0.2
(package
(name "rust-lexopt")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "lexopt" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0w1adb1qwp9rkznq37qvwh01ckxpwcywb6ki9mlw03filyp16xfy"))))
(build-system cargo-build-system)
(home-page "https://github.com/blyxxyz/lexopt")
(synopsis "Minimalist pedantic command line parser")
(description "This package provides a minimalist pedantic command line
parser in Rust.")
(license license:expat)))
(define-public rust-libc-0.2
(package
(name "rust-libc")