diff options
| author | Andrew Wong <wongandj@icloud.com> | 2025-02-20 01:43:21 -0500 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-02-20 11:00:06 +0200 |
| commit | 1bcb7fbaec176bbaacadc5b13f9628b8794b775f (patch) | |
| tree | 2a25d710f3c3b241eca82e7444acdec1bb0d7e06 /gnu | |
| parent | 50dddec44f283a303a6f86201eda903fef4c8308 (diff) | |
gnu: Add rust-unescape-0.1.
* gnu/packages/crates-io.scm (rust-unescape-0.1): New variable.
Change-Id: I36a4a6433171e8ba2d94faafd7d5abd2607a7d41
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/crates-io.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index d01aa4cddec..3429e5488a2 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -88414,6 +88414,26 @@ arithmetic.") "Unchecked indexing wrapper using regular index syntax.") (license (list license:asl2.0 license:expat)))) +(define-public rust-unescape-0.1 + (package + (name "rust-unescape") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "unescape" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0vlgws15n4kz8xq4igzr1f80nbiyr838k687hn6ly8a36an7vffc")))) + (build-system cargo-build-system) + (home-page "https://github.com/saghm/unescape-rs") + (synopsis + "Unescapes strings with escape sequences written out as literal characters") + (description + "This package unescapes strings with escape sequences written out as +literal characters.") + (license license:expat))) + (define-public rust-ungrammar-1 (package (name "rust-ungrammar") |
