summaryrefslogtreecommitdiff
path: root/gnu/packages/prometheus.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-08-13 12:52:24 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-13 12:53:53 +0100
commit5cc0d4e97672c45fbc090700aa97180e815affb4 (patch)
treeea2cc5302b590fed184e7cb5c3bb3aa342a4e74c /gnu/packages/prometheus.scm
parent95aee1df137edfc5120410f6b2453743cd63f166 (diff)
gnu: Add prometheus-alertmanager.
* gnu/packages/prometheus.scm (prometheus-alertmanager): New variable.
Diffstat (limited to 'gnu/packages/prometheus.scm')
-rw-r--r--gnu/packages/prometheus.scm15
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/packages/prometheus.scm b/gnu/packages/prometheus.scm
index bff3412ed3b..910ee9e3c9e 100644
--- a/gnu/packages/prometheus.scm
+++ b/gnu/packages/prometheus.scm
@@ -839,6 +839,21 @@ promlint.")
839;;; Executables: 839;;; Executables:
840;;; 840;;;
841 841
842(define-public prometheus-alertmanager
843 (package/inherit go-github-com-prometheus-alertmanager
844 (name "prometheus-alertmanager")
845 (arguments
846 (substitute-keyword-arguments arguments
847 ((#:import-path _)
848 "github.com/prometheus/alertmanager/cmd/alertmanager")
849 ((#:install-source? _ #t) #f)
850 ((#:skip-build? _ #t) #f)
851 ((#:tests? _ #t) #f)))
852 (native-inputs
853 (package-propagated-inputs go-github-com-prometheus-alertmanager))
854 (propagated-inputs '())
855 (inputs '())))
856
842;;; 857;;;
843;;; Avoid adding new packages to the end of this file. To reduce the chances 858;;; Avoid adding new packages to the end of this file. To reduce the chances
844;;; of a merge conflict, place them above in alphabetic order. 859;;; of a merge conflict, place them above in alphabetic order.