guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 2126ca59617dfc81a0cb807e418b3fc64f334db4
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon May 25 22:55:41 2026 +0100
gnu: Add chglog.
* gnu/packages/golang-xyz.scm (chglog): New variable.
Change-Id: Ifec35d44fff2eaab6b845fb6e5323db1060480f8
---
gnu/packages/golang-xyz.scm | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 031ef79dff..cb5cb88239 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -33977,6 +33977,22 @@ library.")
;;; Executables:
;;;
+(define-public chglog
+ (package/inherit go-github-com-goreleaser-chglog
+ (name "chglog")
+ (arguments
+ (substitute-keyword-arguments arguments
+ ((#:tests? _ #t) #f)
+ ((#:install-source? _ #t) #f)
+ ((#:import-path _) "github.com/goreleaser/chglog/cmd/chglog")
+ ((#:unpack-path _ "") "github.com/goreleaser/chglog")))
+ (native-inputs
+ (append
+ (package-native-inputs go-github-com-goreleaser-chglog)
+ (package-propagated-inputs go-github-com-goreleaser-chglog)))
+ (inputs '())
+ (propagated-inputs '())))
+
(define-public containers-storage
(package/inherit go-github-com-containers-storage
(name "containers-storage")