gnu: Add go-github-com-jackc-pgpassfile.

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

Change-Id: I87f5a049cd26357f99e49f410c506e2789585d6f
This commit is contained in:
Sharlatan Hellseher 2024-12-12 20:41:01 +00:00
parent 1945477b94
commit 3295ae21a5
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -4697,6 +4697,30 @@ (define-public go-github-com-jackc-pgio
@code{PostgreSQL} wire protocol.")
(license license:expat)))
(define-public go-github-com-jackc-pgpassfile
(package
(name "go-github-com-jackc-pgpassfile")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jackc/pgpassfile")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1crw06lzksgimbmr1a3sr00azg2v7l4qkvjra1cpmzzq5mncaj8z"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/jackc/pgpassfile"))
(native-inputs (list go-github-com-stretchr-testify))
(home-page "https://github.com/jackc/pgpassfile")
(synopsis "PostgreSQL .pgpass files parser")
(description
"Package pgpassfile is a parser @code{PostgreSQL} .pgpass files.")
(license license:expat)))
(define-public go-github-com-jackc-puddle
(package
(name "go-github-com-jackc-puddle")