gnu: Add go-github-com-masterminds-squirrel.

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

Change-Id: I14dbeb77ccb8d1c2a7ff0e037bd0dc18e44d187a
This commit is contained in:
Sharlatan Hellseher 2025-01-06 20:32:57 +00:00
parent 554a6672f9
commit cc6b5322a1
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -8708,6 +8708,36 @@ (define-public go-github-com-masterminds-sprig-v3
functions.")
(license license:expat)))
(define-public go-github-com-masterminds-squirrel
(package
(name "go-github-com-masterminds-squirrel")
(version "1.5.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Masterminds/squirrel")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0ws7p3gchw6n81sfdhpk1pbh7gsj1fm7fbjah702d7q1gbn00vja"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/Masterminds/squirrel"))
(native-inputs
(list go-github-com-go-sql-driver-mysql
go-github-com-lib-pq
go-github-com-mattn-go-sqlite3
go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-lann-builder))
(home-page "https://github.com/Masterminds/squirrel")
(synopsis "Fluent SQL generation for golang")
(description
"Package squirrel provides a fluent SQL generator.")
(license license:expat)))
(define-public go-github-com-matryer-try
(package
(name "go-github-com-matryer-try")