gnu: Add cl-prometheus.exposers.hunchentoot.
authorKatherine Cox-Buday <cox.katherine.e@gmail.com>
Fri, 5 Jun 2020 12:59:19 +0000 (14:59 +0200)
committerGuillaume Le Vaillant <glv@posteo.net>
Fri, 5 Jun 2020 13:01:07 +0000 (15:01 +0200)
* gnu/packages/lisp-xyz.scm (sbcl-prometheus.exposers.hunchentoot,
  cl-prometheus.exposers.hunchentoot): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
gnu/packages/lisp-xyz.scm

index 9af4b85..3156bc9 100644 (file)
@@ -11667,3 +11667,19 @@ Streams in ICDE’05.")
 
 (define-public ecl-prometheus.formats.text
   (sbcl-package->ecl-package sbcl-prometheus.formats.text))
+
+(define-public sbcl-prometheus.exposers.hunchentoot
+  (package
+    (inherit sbcl-prometheus)
+    (name "sbcl-prometheus.exposers.hunchentoot")
+    (inputs
+     `(("hunchentoot" ,sbcl-hunchentoot)
+       ("prometheus" ,sbcl-prometheus)
+       ("prometheus.formats.text" ,sbcl-prometheus.formats.text)
+       ("salza2" ,sbcl-salza2)
+       ("trivial-utf-8" ,sbcl-trivial-utf-8)))
+    (synopsis "Prometheus collector for Hunchentoot metrics")
+    (description "Prometheus collector for Hunchentoot metrics")))
+
+(define-public cl-prometheus.exposers.hunchentoot
+  (sbcl-package->cl-source-package sbcl-prometheus.exposers.hunchentoot))