sharlatan pushed a commit to branch go-team
in repository guix.
commit d369f8ecf0ed0bcd65b0cca3a4b4dd8db897fb96
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Feb 18 11:03:26 2025 +0000
gnu: Add go-github-com-peterbourgon-unixtransport.
* gnu/packages/golang-web.scm (go-github-com-peterbourgon-unixtransport):
New variable.
Change-Id: Iae4a542d05a0c840df48d9bf2cd3bae49b687893
---
gnu/packages/golang-web.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index c9f943258e..bc3a56f839 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -6346,6 +6346,33 @@ performance overhead. While unmarshalling, it allows
fully retaining the
original data and access it via a typed struct and a dynamic map.")
(license license:expat)))
+(define-public go-github-com-peterbourgon-unixtransport
+ (package
+ (name "go-github-com-peterbourgon-unixtransport")
+ (version "0.0.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/peterbourgon/unixtransport")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0c5j01bqwh8zy3n2mynh6irh30wfv6sdd1a34yhhg39l9xbpj51g"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/peterbourgon/unixtransport"))
+ (propagated-inputs
+ (list go-github-com-miekg-dns
+ go-github-com-oklog-run
+ go-github-com-peterbourgon-ff-v3))
+ (home-page "https://github.com/peterbourgon/unixtransport")
+ (synopsis "Support for Unix domain sockets in Go HTTP clients")
+ (description
+ "This package adds support for Unix domain sockets in Go HTTP clients.")
+ (license license:asl2.0)))
+
(define-public go-github-com-pion-datachannel
(package
(name "go-github-com-pion-datachannel")