guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 79a33e547523b22333837b21e88fe33c7cd16956
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Dec 5 19:26:19 2025 +0100

    gnu: Add go-github-com-ysmood-gop.
    
    * gnu/packages/golang-xyz.scm (go-github-com-ysmood-gop): New variable.
    
    Change-Id: I560910e8b1546c09d291fab0de74983bc267b29f
---
 gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 0f9e6a7cff..a1bd8d3f2c 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -24688,6 +24688,33 @@ its real absolute path in the system.")
 @url{https://github.com/yosuke-furukawa/json5, JSON5}.")
       (license license:bsd-3))))
 
+(define-public go-github-com-ysmood-gop
+  (package
+    (name "go-github-com-ysmood-gop")
+    (version "0.3.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/ysmood/gop";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "09p4h723bnzk3p3bscns8667pg3jj8fwz4vh7ifdms9n3vy5w1g0"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/ysmood/gop"
+      ;; TestStyle, TestTokenize, and TestFixNestedStyle fail due to ANSI
+      ;; escape sequence differences in the build environment.
+      #:test-flags #~(list "-skip" 
"TestStyle|TestTokenize|TestFixNestedStyle")))
+    (home-page "https://github.com/ysmood/gop";)
+    (synopsis "Go pretty printer for data structures")
+    (description
+     "Gop is a Go pretty printer that formats Go data structures in a readable
+format for debugging and logging purposes.")
+    (license license:expat)))
+
 (define-public go-github-com-yudai-gojsondiff
   (package
     (name "go-github-com-yudai-gojsondiff")

Reply via email to