diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-12 23:44:31 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-18 14:07:31 +0100 |
| commit | 10c2593340591d49e190edb13462e2ebf4e18743 (patch) | |
| tree | 1af1c0f3672362c874020fe116b5a3c6ec3bb1b8 | |
| parent | ffe5c2a6e2782e329c9cdb191ee16ef7858d7e08 (diff) | |
gnu: Add go-github-com-xiang90-probing.
* gnu/packages/golang-web.scm (go-github-com-xiang90-probing): New variable.
Change-Id: I43aaedbeefaa7d5fd4cca947fb6c205b34fc82dc
| -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 ddc10b3f7d1..fe7bb74af6c 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -15963,6 +15963,30 @@ programming language.") programming language, which supports draft-04, draft-06 and draft-07.") (license license:asl2.0))) +(define-public go-github-com-xiang90-probing + (package + (name "go-github-com-xiang90-probing") + (version "0.0.0-20221125231312-a49e3df8f510") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xiang90/probing") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w0pwy8fzxfqnsjzl28jy08di58kwag48vlj4yj9hls77qgbr9ar")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/xiang90/probing")) + (home-page "https://github.com/xiang90/probing") + (synopsis "HTTP prober") + (description + "This package implements a simple HTTP prober which may be used to check +endpoint health status.") + (license license:expat))) + (define-public go-github-com-xo-dburl (package (name "go-github-com-xo-dburl") |
