diff options
| author | muradm <mail@muradm.net> | 2022-06-15 12:17:35 +0300 |
|---|---|---|
| committer | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2022-06-17 10:30:36 +0200 |
| commit | 7f7a075c3debc92168db7dbdf9a2a1ef3156b0ea (patch) | |
| tree | fc09804bac9e89b9942073aab8f50326c1914afe /gnu | |
| parent | 6fc33d91ba6b07beae8a9a38a5b768511bb79ced (diff) | |
gnu: crates-io: Add rust-enquote 1.1.0.
* gnu/packages/crates-io.scm (rust-enquote-1): New variable
Signed-off-by: Lars-Dominik Braun <ldb@leibniz-psychology.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/crates-io.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 452a22f0f2c..9be9479e06b 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | ;;; Copyright © 2021 Antero Mejr <antero@kodmin.com> | 19 | ;;; Copyright © 2021 Antero Mejr <antero@kodmin.com> |
| 20 | ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com> | 20 | ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com> |
| 21 | ;;; Copyright © 2021 Vinicius Monego <monego@posteo.net> | 21 | ;;; Copyright © 2021 Vinicius Monego <monego@posteo.net> |
| 22 | ;;; Copyright © 2021 muradm <mail@muradm.net> | ||
| 22 | ;;; Copyright © 2021, 2022 Petr Hodina <phodina@protonmail.com> | 23 | ;;; Copyright © 2021, 2022 Petr Hodina <phodina@protonmail.com> |
| 23 | ;;; Copyright © 2021, 2022 Ricardo Wurmus <rekado@elephly.net> | 24 | ;;; Copyright © 2021, 2022 Ricardo Wurmus <rekado@elephly.net> |
| 24 | ;;; Copyright © 2021 Jacob Hrbek <kreyren@rixotstudio.cz> | 25 | ;;; Copyright © 2021 Jacob Hrbek <kreyren@rixotstudio.cz> |
| @@ -73053,3 +73054,20 @@ including a line breaking iterator.") | |||
| 73053 | and automatically convert it to a windows batch file, this library provides a | 73054 | and automatically convert it to a windows batch file, this library provides a |
| 73054 | way to convert simple shell commands to windows batch commands.") | 73055 | way to convert simple shell commands to windows batch commands.") |
| 73055 | (license license:asl2.0))) | 73056 | (license license:asl2.0))) |
| 73057 | |||
| 73058 | (define-public rust-enquote-1 | ||
| 73059 | (package | ||
| 73060 | (name "rust-enquote") | ||
| 73061 | (version "1.1.0") | ||
| 73062 | (home-page "https://github.com/reujab/enquote") | ||
| 73063 | (source (origin | ||
| 73064 | (method url-fetch) | ||
| 73065 | (uri (crate-uri "enquote" version)) | ||
| 73066 | (file-name (string-append name "-" version ".tar.gz")) | ||
| 73067 | (sha256 | ||
| 73068 | (base32 | ||
| 73069 | "0clrjghlfkkb7sndabs5wch0fz2nif6nj4b117s8kqxx3nqnrhq6")))) | ||
| 73070 | (build-system cargo-build-system) | ||
| 73071 | (synopsis "Rust library that quotes, unquotes, and unescapes strings") | ||
| 73072 | (description "A Rust library quotes, unquotes, and unescapes strings") | ||
| 73073 | (license license:unlicense))) | ||
