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

commit 23d8beb95584fe2fa634b6b79a0edbbd0e63064d
Author: Sharlatan Hellseher <sharlata...@gmail.com>
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 22bb3fab5f..b4637a036c 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -9366,6 +9366,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")

Reply via email to