diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-03-28 21:19:34 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:50:31 +0100 |
| commit | 497a8968fcc5ab786ef39f296568e88f8ec31350 (patch) | |
| tree | 193d4d866d13e9bd1e4fcc06b646209554789358 /gnu | |
| parent | d046c9775ccf446c8a7d13289a47daf8e28b3c22 (diff) | |
gnu: Add go-github-com-prometheus-sigv4.
* gnu/packages/prometheus.scm (go-github-com-prometheus-sigv4): New variable.
Change-Id: I5ad8088c071c7b4c2e9b91e9151dd971113f82e5
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/prometheus.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/prometheus.scm b/gnu/packages/prometheus.scm index 3e1814eba26..4541eaec9f0 100644 --- a/gnu/packages/prometheus.scm +++ b/gnu/packages/prometheus.scm @@ -564,6 +564,38 @@ kernel, and process metrics from the @file{/proc} pseudo file system.") (sha256 (base32 "0fv3f83q5wigbpl6mdpk4k7bj8jabc81rap0ym95l7rpw93cdlim")))))))) +(define-public go-github-com-prometheus-sigv4 + (package + (name "go-github-com-prometheus-sigv4") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/sigv4") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yw37lw4x2l20l02i6yd4m4x948vgrfyaa0csl155rdyq3ynwa5w")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/prometheus/sigv4")) + (native-inputs + (list go-github-com-stretchr-testify)) + (propagated-inputs + (list go-github-com-aws-aws-sdk-go + go-github-com-prometheus-client-golang + go-github-com-prometheus-common + go-gopkg-in-yaml-v2)) + (home-page "https://github.com/prometheus/sigv4") + (synopsis "HTTP signed requests with Amazon's Signature Verification V4") + (description + "sigv4 provides a @code{http.RoundTripper} that will sign requests using +Amazon's Signature Verification V4 signing procedure, using credentials from +the default AWS credential chain.") + (license license:asl2.0))) + (define-public go-github-com-prometheus-statsd-exporter (package (name "go-github-com-prometheus-statsd-exporter") |
