gnu: Add go-github-com-dave-jennifer.

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

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Troy Figiel 2024-02-24 11:14:09 +01:00 committed by Sharlatan Hellseher
parent 9af99245e7
commit fbc7a0efa7
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5

View File

@ -562,6 +562,29 @@ of unit files.")))
metrics to Graphite.") metrics to Graphite.")
(license license:bsd-2))) (license license:bsd-2)))
(define-public go-github-com-dave-jennifer
(package
(name "go-github-com-dave-jennifer")
(version "1.7.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/dave/jennifer")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "01sgafbds8n5zs61qf057whn06yj6avz30xgxk6pllf22528558m"))))
(build-system go-build-system)
(arguments
(list
#:go go-1.20
#:import-path "github.com/dave/jennifer"))
(home-page "https://github.com/dave/jennifer")
(synopsis "Code generator for Go")
(description "This package provides functionality to generate Go code.")
(license license:expat)))
(define-public go-github-com-dimchansky-utfbom (define-public go-github-com-dimchansky-utfbom
(package (package
(name "go-github-com-dimchansky-utfbom") (name "go-github-com-dimchansky-utfbom")