guix_mirror_bot pushed a commit to branch master
in repository guix.
commit c95418302efdc4362adea69f453ec8d49725d03f
Author: Patrick Norton <[email protected]>
AuthorDate: Tue Jan 6 08:27:50 2026 -0500
gnu: Add go-github-com-goreleaser-chglog.
* gnu/packages/golang-xyz.scm (go-github-com-goreleaser-chglog): New
variable.
Change-Id: Iba81e76b9897fcf90c3ef2434f14034a5db461f8
Relates-to: #5417
Reviewed-by: Arthur Rodrigues <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
Change-Id: Ib3f02cfa70c89c4763c867405385c11e2706678c
---
gnu/packages/golang-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 1d3c4f0c31..4da7953df7 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -114,6 +114,7 @@
#:use-module (gnu packages golang-compression)
#:use-module (gnu packages golang-crypto)
#:use-module (gnu packages golang-maths)
+ #:use-module (gnu packages golang-vcs)
#:use-module (gnu packages golang-web)
#:use-module (gnu packages graph)
#:use-module (gnu packages imagemagick)
@@ -12650,6 +12651,41 @@ color (24-bit, RGB)
@end itemize")
(license license:expat)))
+(define-public go-github-com-goreleaser-chglog
+ (package
+ (name "go-github-com-goreleaser-chglog")
+ (version "0.7.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/goreleaser/chglog")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "09ni4y644zhp3bf9nwy9qc9wkxrn2hla6nczg3zpn0ls8qaxjd40"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/goreleaser/chglog"))
+ (native-inputs
+ (list go-github-com-go-git-go-billy-v5
+ go-github-com-google-go-cmp
+ go-github-com-smartystreets-goconvey
+ go-github-com-spf13-cobra
+ go-github-com-spf13-viper))
+ (propagated-inputs
+ (list go-github-com-go-git-go-git-v5
+ go-github-com-masterminds-semver-v3
+ go-github-com-masterminds-sprig-v3
+ go-gitlab-com-digitalxero-go-conventional-commit
+ go-go-yaml-in-yaml-v3))
+ (home-page "https://github.com/goreleaser/chglog")
+ (synopsis "Changelog management Go library")
+ (description
+ "This package provides Go functions to manage changelogs.")
+ (license license:expat)))
+
(define-public go-github-com-goreleaser-fileglob
(package
(name "go-github-com-goreleaser-fileglob")