diff options
author | Pierre Langlois <pierre.langlois@gmx.com> | 2022-11-25 01:21:13 +0000 |
---|---|---|
committer | Andrew Tropin <andrew@trop.in> | 2023-02-09 17:37:11 +0400 |
commit | 8686933c1e5852300844bcce54401229caf99919 (patch) | |
tree | 1ce03e187e7c847641ee53d3089a77e0f491963c /gnu | |
parent | 1378bb5348cc0f4bec796ccf1a2632f08e42cb09 (diff) | |
download | guix-8686933c1e5852300844bcce54401229caf99919.tar guix-8686933c1e5852300844bcce54401229caf99919.tar.gz |
gnu: Add rust-html-escape.
* gnu/packages/crates-io.scm (rust-html-escape): New variable.
Signed-off-by: Andrew Tropin <andrew@trop.in>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 661411b2c5..370fb96438 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -26033,6 +26033,30 @@ Hash-based Message Authentication Code algorithm} for SHA1.") "This package provides a library for HTML entity encoding and decoding.") (license (list license:asl2.0 license:expat license:mpl2.0)))) +(define-public rust-html-escape-0.2 + (package + (name "rust-html-escape") + (version "0.2.12") + (source (origin + (method url-fetch) + (uri (crate-uri "html-escape" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "01f2v3c6j2rk5h2lhdbh62j07cm1fvzqw4vplj2sms83jpx5qc8m")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-utf8-width" ,rust-utf8-width-0.1)) + #:cargo-development-inputs + (("rust-bencher" ,rust-bencher-0.1)))) + (home-page "https://magiclen.org/html-escape") + (synopsis "Library for encoding and escaping special characters in HTML") + (description + "This package provides a library for encoding and escaping special +characters in HTML, decoding and unescaping HTML entities as well.") + (license license:expat))) + (define-public rust-hts-sys-2 (package (name "rust-hts-sys") |