guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

112/401: gnu: Add go-github-com-jackc-pgpassfile.


From: guix-commits
Subject: 112/401: gnu: Add go-github-com-jackc-pgpassfile.
Date: Thu, 26 Dec 2024 19:30:39 -0500 (EST)

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

commit b65daddc4d46aae67f8e4ed1e0778d44bd2fd52f
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Thu Dec 12 20:41:01 2024 +0000

    gnu: Add go-github-com-jackc-pgpassfile.
    
    * gnu/packages/golang-xyz.scm (go-github-com-jackc-pgpassfile): New 
variable.
    
    Change-Id: I87f5a049cd26357f99e49f410c506e2789585d6f
---
 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 cb2d2e5cba..cbdc358299 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -4697,6 +4697,30 @@ time strings.")
 @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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]