guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 3ba12c59a12f9d5eb547dc19873c32c11b51d83b
Author: Arthur Rodrigues <[email protected]>
AuthorDate: Thu Jan 29 10:44:11 2026 -0300

    gnu: Add go-github-com-transparency-dev-merkle.
    
    * gnu/packages/golang-xyz.scm (go-github-com-transparency-dev-merkle): New 
variable.
    
    Change-Id: Ia9690160137b2ce04641223f8a0380fd37f17446
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index ac94a2b83a..4497502e50 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -23782,6 +23782,32 @@ recommended.")
 emulator.")
     (license license:expat)))
 
+(define-public go-github-com-transparency-dev-merkle
+  (package
+    (name "go-github-com-transparency-dev-merkle")
+    (version "0.0.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/transparency-dev/merkle";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "03yzjzc8rmvxy8vy6jwgjyir8lplw19xikl0bvbiy5g3gy2wi7qy"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/transparency-dev/merkle"))
+    (native-inputs
+     (list go-github-com-google-go-cmp))
+    (home-page "https://github.com/transparency-dev/merkle";)
+    (synopsis "Merkle trees in Golang")
+    (description
+     "Thi package provides a @url{https://en.wikipedia.org/wiki/Merkle_tree,
+Merkle tree} implementation in Golang.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-twpayne-go-shell
   (package
     (name "go-github-com-twpayne-go-shell")

Reply via email to