diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-10 11:30:30 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:07 +0100 |
commit | 86d7418738949bcf43fb0d685af7cb2d0a9da56d (patch) | |
tree | b2fcd209ab560d1a1627afc2ad02df94c620698b /gnu/packages/golang-web.scm | |
parent | 6b30d0db99c2b8fd5cd235515ca7c90ef297d5a7 (diff) |
gnu: Add go-github-com-flosch-pongo2-v6.
* gnu/packages/golang-web.scm (go-github-com-flosch-pongo2-v6): New variable.
Change-Id: Ia79e76a1650a55861569b73f6f2f8ecc866c643b
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r-- | gnu/packages/golang-web.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index bfea07a115..183025ce5f 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -2789,6 +2789,30 @@ metrics (i.e. response time, bytes written, and http status code) from your application's http.Handlers.") (license license:expat))) +(define-public go-github-com-flosch-pongo2-v6 + (package + (name "go-github-com-flosch-pongo2-v6") + (version "6.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/flosch/pongo2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "153na9srg6rwj40jb30m65hihlj657n9pmqrs7qlir1yxdygnxw5")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/flosch/pongo2/v6")) + (native-inputs + (list go-gopkg-in-check-v1)) + (home-page "https://github.com/flosch/pongo2") + (synopsis "Django-syntax like template-engine for Golang") + (description "This package provides a Django-syntax like template-engine.") + (license license:expat))) + ;; This project looks like dormant or abandoned, see ;; <https://github.com/francoispqt/gojay/issues/150>. (define-public go-github-com-francoispqt-gojay |