~ruther/guix-local

86d7418738949bcf43fb0d685af7cb2d0a9da56d — Sharlatan Hellseher a year ago 6b30d0d
gnu: Add go-github-com-flosch-pongo2-v6.

* gnu/packages/golang-web.scm (go-github-com-flosch-pongo2-v6): New variable.

Change-Id: Ia79e76a1650a55861569b73f6f2f8ecc866c643b
1 files changed, 24 insertions(+), 0 deletions(-)

M gnu/packages/golang-web.scm
M gnu/packages/golang-web.scm => gnu/packages/golang-web.scm +24 -0
@@ 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