guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 79243efc4aeea976e6a0ef04c9c118156e4bd3ee
Author: Patrick Norton <[email protected]>
AuthorDate: Tue Jan 6 08:23:41 2026 -0500

    gnu: Add go-gitlab-com-digitalxero-go-conventional-commit.
    
    * gnu/packages/golang-vcs.scm
    (go-gitlab-com-digitalxero-go-conventional-commit): New variable.
    
    Change-Id: Ia366ebed43a75ee741f2355106f4e7555e3f9375
    Relates-to: guix/guix!5417
    Reviewed-by: Arthur Rodrigues <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-vcs.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang-vcs.scm b/gnu/packages/golang-vcs.scm
index ee90dbe4ad..45b721e095 100644
--- a/gnu/packages/golang-vcs.scm
+++ b/gnu/packages/golang-vcs.scm
@@ -607,6 +607,30 @@ Actions} locally.")
 It's a static checker for GitHub Actions workflow files.")
     (license license:expat)))
 
+(define-public go-gitlab-com-digitalxero-go-conventional-commit
+  (package
+    (name "go-gitlab-com-digitalxero-go-conventional-commit")
+    (version "1.0.7")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://gitlab.com/digitalxero/go-conventional-commit.git";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1191j3k9ma5sv8w2zsw8gb1407561zll0ca8hwy0dja6s0b3z0xy"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "gitlab.com/digitalxero/go-conventional-commit"))
+    (home-page "https://gitlab.com/digitalxero/go-conventional-commit";)
+    (synopsis "Go parser for conventional commits")
+    (description
+     "This package provides a Go parser for conventional-commit messages
+@url{https://www.conventionalcommits.org/}.";)
+    (license license:expat)))
+
 (define-public go-github-com-xanzy-go-gitlab
   (package
     (name "go-github-com-xanzy-go-gitlab")

Reply via email to