gnu: Add go-github-com-valyala-fasttemplate.

* gnu/packages/golang-xyz.scm (go-github-com-valyala-fasttemplate): New variable.

Change-Id: I7b7a4314c0ae68f03bb6a25c6b71e4e95bbd7639
This commit is contained in:
Sharlatan Hellseher 2025-01-12 00:01:32 +00:00
parent cc4e9891d6
commit ce5fce4bce
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -14468,6 +14468,34 @@ (define-public go-github-com-valyala-bytebufferpool
anti-fragmentation protection.")
(license license:expat)))
(define-public go-github-com-valyala-fasttemplate
(package
(name "go-github-com-valyala-fasttemplate")
(version "1.2.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/valyala/fasttemplate")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "12hywkz2mfvxzfpgabc53bm4jkxxmcssrr0k4wxzzrnv0v7mj6bj"))
(snippet
#~(begin (use-modules (guix build utils))
(delete-file-recursively "vendor")))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/valyala/fasttemplate"))
(propagated-inputs
(list go-github-com-valyala-bytebufferpool))
(home-page "https://github.com/valyala/fasttemplate")
(synopsis "Template engine for Golang")
(description
"Package fasttemplate implements simple and fast template library.")
(license license:expat)))
(define-public go-github-com-vburenin-ifacemaker
(package
(name "go-github-com-vburenin-ifacemaker")