diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-05-31 01:34:10 +0200 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-05-31 02:45:37 +0200 |
| commit | 9b253deb5fa0f32fba364f1e5ee0d826dc98d419 (patch) | |
| tree | 4d20290846d222629a2963d15530234a4e5d3878 | |
| parent | fb9e85992c61413a9f022e91a96f42f1799639ca (diff) | |
gnu: Add rust-askama-escape@0.10.3.
* gnu/packages/crates-web.scm (rust-askama-escape-0.10): New variable.
Change-Id: Ibe9979908cfac916ee4b62cc11cd6dfacdb08d8f
| -rw-r--r-- | gnu/packages/crates-web.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/crates-web.scm b/gnu/packages/crates-web.scm index aaa6de2f011..e1e579f97a6 100644 --- a/gnu/packages/crates-web.scm +++ b/gnu/packages/crates-web.scm @@ -8998,3 +8998,22 @@ GUIs as desktop applications.") (description "This package provides HTTP mocking to test Rust applications.") (license (list license:expat license:asl2.0)))) + +(define-public rust-askama-escape-0.10 + (package + (name "rust-askama-escape") + (version "0.10.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "askama_escape" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0hg3rz0cma5f6385z7qmqw3jbir76jndwd5s7dqfk92v9gil75v1")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t)) + (home-page "https://askama.readthedocs.io/") + (synopsis "HTML escaping, extracted from Askama") + (description "This package provides HTML escaping, extracted from Askama.") + (license (list license:expat license:asl2.0)))) |
