diff options
author | Christopher Baines <mail@cbaines.net> | 2023-09-12 22:25:43 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-09-12 22:25:43 +0100 |
commit | 767ec69bab95e840562a319fe4afa0db35f24bd6 (patch) | |
tree | 5f774c1c69404fc06f43cd5f5af69f89d6d4f7ef | |
parent | e2a7c227dea5b361e2ebdbba24b923d1922a79d0 (diff) | |
download | guix-awair-exporter.tar guix-awair-exporter.tar.gz |
-rw-r--r-- | gnu/packages/monitoring.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index 3238f11fb4..6326b539b8 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -544,6 +544,32 @@ written in Go with pluggable metric collectors.") (home-page "https://github.com/prometheus/node_exporter") (license license:asl2.0))) +(define-public prometheus-awair-exporter + (let ((commit "2647a6c3fe2c6761ce03243b7e252aaf130fd31b") + (revision "0")) + (package + (name "prometheus-awair-exporter") + (version (git-version "0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/barrucadu/prometheus-awair-exporter") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "09q5a9rdv2vxjwsvs2wvaik51ff2m6yfhpbiprbihbdminx462dl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/barrucadu/prometheus-awair-exporter")) + (native-inputs + (list go-github-com-prometheus-client-golang + go-github.com-jessevdk-go-flags)) + (synopsis "") + (description "") + (home-page "https://github.com/barrucadu/prometheus-awair-exporter") + (license license:asl2.0)))) + (define-public temper-exporter (let ((commit "a87bbab19c05609d62d9e4c7941178700c1ef84d") (revision "0")) |