diff options
| author | Arun Isaac <arunisaac@systemreboot.net> | 2026-02-08 20:59:19 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-28 22:05:08 +0000 |
| commit | c0c22f6fc744161ad2ccc7afae6510fc191ece0d (patch) | |
| tree | c2261ce336d458963d4ff3caff54db0585ac85f8 /gnu | |
| parent | 8ec30c5ab609c559f8ea1f0a1ec188f8d01d2ebd (diff) | |
gnu: Add go-github-com-phayes-freeport.
* gnu/packages/golang-web.scm (go-github-com-phayes-freeport): New variable.
Change-Id: Ib71f88390187cc19ba85ac5b326f0530c17b14e3
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-web.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index d9c6dd473f..15f40c9c24 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -11724,6 +11724,30 @@ original data and access it via a typed struct and a dynamic map.") "This package adds support for Unix domain sockets in Go HTTP clients.") (license license:asl2.0))) +(define-public go-github-com-phayes-freeport + (package + (name "go-github-com-phayes-freeport") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/phayes/freeport") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gwaan8fwmc5lfx4dzymq0jd6z2l1frg83jkmjpm4kw8ay4vr11q")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/phayes/freeport")) + (home-page "https://github.com/phayes/freeport") + (synopsis "Find a free and open TCP port") + (description + "This package provides a Go library that finds a free open TCP port that +is ready to use.") + (license license:bsd-3))) + (define-public go-github-com-pion-datachannel (package (name "go-github-com-pion-datachannel") |
