guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit 31e5ab05e4cc9e3124b94da04b88c94d347b9073
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Feb 13 00:37:17 2026 +0000

    gnu: Add go-github-com-tiendc-go-deepcopy.
    
    * gnu/packages/golang-xyz.scm (go-github-com-tiendc-go-deepcopy): New 
variable.
    
    Change-Id: I6bdcbac5b8e5d492cf449a37066aa32c419ad841
---
 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 ef6d007414..73c3da047e 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -25116,6 +25116,32 @@ readability, or to compact JSON for smaller payloads.")
 document.")
     (license license:expat)))
 
+(define-public go-github-com-tiendc-go-deepcopy
+  (package
+    (name "go-github-com-tiendc-go-deepcopy")
+    (version "1.7.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/tiendc/go-deepcopy";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "19nf7b33rka5pcfjcbds68cr8wwsnhm9fj3awq30nvs374l58v1b"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/tiendc/go-deepcopy"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (home-page "https://github.com/tiendc/go-deepcopy";)
+    (synopsis "Fast deep-copy library for Go")
+    (description
+     "This package implements a functionality to copy one Golang type into
+another.")
+    (license license:expat)))
+
 (define-public go-github-com-timshannon-bolthold
   (package
     (name "go-github-com-timshannon-bolthold")

Reply via email to