diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-25 12:47:08 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-25 20:46:48 +0100 |
commit | 452924fbac6e3c67a90ad54a9ddff2a1f925a62c (patch) | |
tree | 588fd8659edb1f36eb96fcd7432cebb97b2943a1 | |
parent | 81ff6e5e64f46dc4741c81bb973054d7e65b0dec (diff) | |
download | guix-452924fbac6e3c67a90ad54a9ddff2a1f925a62c.tar.gz guix-452924fbac6e3c67a90ad54a9ddff2a1f925a62c.zip |
gnu: Add go-github-com-stvp-go-udp-testing.
* gnu/packages/golang-check.scm (go-github-com-stvp-go-udp-testing): New variable.
Change-Id: I23a507d23cdf419beeba5d44bb6bed6f7f4fcdce
-rw-r--r-- | gnu/packages/golang-check.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 9b684fa94a..130daae28a 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -950,6 +950,30 @@ Features include: (propagated-inputs (list go-gopkg-in-yaml-v3))))) +(define-public go-github-com-stvp-go-udp-testing + (package + (name "go-github-com-stvp-go-udp-testing") + (version "0.0.0-20201019212854-469649b16807") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stvp/go-udp-testing") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03dzhwnvbshiivbcawaxsl963d8hh18yf3ydvzvhyjgz60g8lxil")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/stvp/go-udp-testing")) + (home-page "https://github.com/stvp/go-udp-testing") + (synopsis "UDP test helpers for Golang") + (description + "This package implements UDP test helpers. It lets assert that certain +strings must or must not be sent to a given local UDP listener.") + (license license:expat))) + (define-public go-github-com-tdewolff-test (package (name "go-github-com-tdewolff-test") |