diff options
author | Andrew Jose <arnav.jose@gmail.com> | 2023-09-21 18:14:50 +0530 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-09-28 21:17:19 +0300 |
commit | 2f46ffd3ae15c180748c3aae89d374fe45f1e093 (patch) | |
tree | d2cabefb026fc2f5ed9a324ed6e9a34b74007b1b | |
parent | 429294d95a12d22e510b5e88dc80b315852cdafb (diff) |
gnu: Add rust-lexiclean-0.0.1.
* gnu/packages/crates-io.scm (rust-lexiclean-0.0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 80b3ccf3c6..b8460f0197 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -34552,6 +34552,23 @@ a no_std environment. This does not depend on any standard library features, nor a system allocator.") (license (list license:expat license:asl2.0)))) +(define-public rust-lexiclean-0.0.1 + (package + (name "rust-lexiclean") + (version "0.0.1") + (source (origin + (method url-fetch) + (uri (crate-uri "lexiclean" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1rb8sky7gi75a7xxn6xrfkrbqkp465npm54p5s89ysqhgc0ja4j4")))) + (build-system cargo-build-system) + (home-page "https://github.com/casey/lexiclean") + (synopsis "Lexically clean paths") + (description "Lexically clean paths") + (license license:cc0))) + (define-public rust-lexopt-0.3 (package (name "rust-lexopt") |