1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add go-github-com-tiendc-go-deepcopy.

* gnu/packages/golang-xyz.scm (go-github-com-tiendc-go-deepcopy): New variable.

Change-Id: I6bdcbac5b8e5d492cf449a37066aa32c419ad841
This commit is contained in:
Sharlatan Hellseher
2026-02-13 00:37:17 +00:00
committed by Andreas Enge
parent 10c2593340
commit 061f733720

View File

@@ -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")