gnu: Add cl-prometheus.pushgateway.

* gnu/packages/lisp-xyz.scm (sbcl-prometheus.pushgateway,
  cl-prometheus.pushgateway, ecl-prometheus.pushgateway): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Katherine Cox-Buday 2020-06-05 15:03:59 +02:00 committed by Guillaume Le Vaillant
parent 019ff3c3c7
commit 9e20646bf5
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -11683,3 +11683,20 @@ (define-public sbcl-prometheus.exposers.hunchentoot
(define-public cl-prometheus.exposers.hunchentoot (define-public cl-prometheus.exposers.hunchentoot
(sbcl-package->cl-source-package sbcl-prometheus.exposers.hunchentoot)) (sbcl-package->cl-source-package sbcl-prometheus.exposers.hunchentoot))
(define-public sbcl-prometheus.pushgateway
(package
(inherit sbcl-prometheus)
(name "sbcl-prometheus.pushgateway")
(inputs
`(("drakma" ,sbcl-drakma)
("prometheus" ,sbcl-prometheus)
("prometheus.formats.text" ,sbcl-prometheus.formats.text)))
(synopsis "Prometheus Pushgateway client")
(description "Prometheus Pushgateway client.")))
(define-public cl-prometheus.pushgateway
(sbcl-package->cl-source-package sbcl-prometheus.pushgateway))
(define-public ecl-prometheus.pushgateway
(sbcl-package->ecl-package sbcl-prometheus.pushgateway))