diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-10 12:13:32 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:08 +0100 |
commit | 50da3dcdc60c0f457057d75b247936d0614a898b (patch) | |
tree | 614ab3001a04dfa06d3fb5456dfea59eba8cabd8 | |
parent | d65daf786e20bfe44843fade0accecb727732a1e (diff) |
gnu: Add go-github-com-hugelgupf-socketpair.
* gnu/packages/golang-web.scm (go-github-com-hugelgupf-socketpair): New variable.
Change-Id: Ibac35c8c20536c8e28f6ae74155e384a453962d9
-rw-r--r-- | gnu/packages/golang-web.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 183025ce5f..9874bf94fe 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -4592,6 +4592,31 @@ user interface for humans, to read and edit before passing the JSON data to the machine.") (license license:expat))) +(define-public go-github-com-hugelgupf-socketpair + (package + (name "go-github-com-hugelgupf-socketpair") + (version "0.0.0-20240723164047-9246f217b3fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hugelgupf/socketpair") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pdaanxirsnw9d63mz3867q8vgfh51099zzm4mm6ngv8a14zxzcl")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/hugelgupf/socketpair")) + (home-page "https://github.com/hugelgupf/socketpair") + (synopsis "Bidirectionally connected Conns") + (description + "This provides bidirectionally connected @code{net.Conns}, +@code{net.PacketConns} made from socketpair(2) as well as bidirectionally +connected @code{net.TCPConns}.") + (license license:bsd-3))) + (define-public go-github-com-huin-goupnp (package (name "go-github-com-huin-goupnp") |