1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 12:00:35 +02:00

gnu: Add rust-askama-parser@0.2.1.

* gnu/packages/crates-web.scm (rust-askama-parser-0.2): New variable.

Change-Id: I94069939e72163bd0de0aca29b1fecb3e8c970b8
This commit is contained in:
Danny Milosavljevic 2025-05-31 01:34:31 +02:00
parent 9b253deb5f
commit 8703ec137c
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -9017,3 +9017,23 @@ applications.")
(synopsis "HTML escaping, extracted from Askama")
(description "This package provides HTML escaping, extracted from Askama.")
(license (list license:expat license:asl2.0))))
(define-public rust-askama-parser-0.2
(package
(name "rust-askama-parser")
(version "0.2.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "askama_parser" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1h00vcnqq9qqlayx1ass4an458rk4lm3q88867cc7lb4dcf1dcdc"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-nom" ,rust-nom-7))))
(home-page "https://github.com/askama-rs/askama")
(synopsis "Parser for Askama templates")
(description "This package provides a parser for Askama templates.")
(license (list license:expat license:asl2.0))))