ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / ocaml-modules / prometheus / default.nix
blob8590436398580fdd9f8fb425513a85649f9453fe
2   lib,
3   fetchurl,
4   buildDunePackage,
5   astring,
6   asetmap,
7   fmt,
8   re,
9   lwt,
10   alcotest,
13 buildDunePackage rec {
14   pname = "prometheus";
15   version = "1.2";
17   src = fetchurl {
18     url = "https://github.com/mirage/prometheus/releases/download/v${version}/prometheus-${version}.tbz";
19     sha256 = "sha256-g2Q6ApprbecdFANO7i6U/v8dCHVcSkHVg9wVMKtVW8s=";
20   };
22   duneVersion = "3";
24   propagatedBuildInputs = [
25     astring
26     asetmap
27     fmt
28     re
29     lwt
30     alcotest
31   ];
33   meta = {
34     description = "Client library for Prometheus monitoring";
35     license = lib.licenses.asl20;
36     maintainers = [ lib.maintainers.ulrikstrid ];
37   };