sharlatan pushed a commit to branch go-team
in repository guix.
commit 5b8567ce2d05dd7f97080704c0c354c1e9b7bb8b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Feb 13 11:50:13 2025 +0000
gnu: Add go-github-com-kisielk-sqlstruct.
* gnu/packages/golang-xyz.scm (go-github-com-kisielk-sqlstruct): New
variable.
Change-Id: If7a12afe38586dbed7aee7d15bce73a64e77d284
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 2278a02d59..69e19f1eb2 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -9365,6 +9365,30 @@ Goroutine-safe connections)
manipulate processes in a safe way.")
(license license:expat)))
+(define-public go-github-com-kisielk-sqlstruct
+ (package
+ (name "go-github-com-kisielk-sqlstruct")
+ (version "0.0.0-20210630145711-dae28ed37023")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kisielk/sqlstruct")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1kna8qzpf1n5zsfi624xm5k3sssn5cnsw1b23w4l3qa5djy4wylk"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/kisielk/sqlstruct"))
+ (home-page "https://github.com/kisielk/sqlstruct")
+ (synopsis "Golang sturcts with std @code{database/sql}")
+ (description
+ "Package sqlstruct provides some convenience functions for using structs
+with the Go standard library's @code{database/sql} package.")
+ (license license:expat)))
+
(define-public go-github-com-klauspost-asmfmt
(package
(name "go-github-com-klauspost-asmfmt")