gnu: Add go-github-com-kisielk-sqlstruct.

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

Change-Id: If7a12afe38586dbed7aee7d15bce73a64e77d284
This commit is contained in:
Sharlatan Hellseher 2025-02-13 11:50:13 +00:00
parent 5b93409641
commit 439e0bc956
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -9400,6 +9400,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")