1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-10 15:10:37 +02:00

gnu: Add go-github-com-phayes-freeport.

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

Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Arun Isaac
2026-02-06 01:26:13 +00:00
committed by jgart
parent 4bc5d1785f
commit 24faafff38

View File

@@ -19500,6 +19500,28 @@ editor with history, inspired by @url{https://github.com/antirez/linenoise/,
linenoise}. Xterm as well as WIN32 terminal codes are supported.")
(license license:expat)))
(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-phayes-permbits
(package
(name "go-github-com-phayes-permbits")