biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / metrics / default.nix
blob9a0de6212f20dd55995e1f50e0211724598381e5
1 { lib, fetchurl, buildDunePackage, alcotest, fmt }:
3 buildDunePackage rec {
4   pname = "metrics";
5   version = "0.4.1";
7   minimalOCamlVersion = "4.04";
9   src = fetchurl {
10     url = "https://github.com/mirage/metrics/releases/download/v${version}/metrics-${version}.tbz";
11     sha256 = "sha256-d+DCD7XB0GED27DsC8YEW+48YcAK0EI8l4Uqx/PGFE0=";
12   };
14   propagatedBuildInputs = [ fmt ];
16   checkInputs = [ alcotest ];
18   doCheck = true;
20   meta = {
21     description = "Metrics infrastructure for OCaml";
22     homepage = "https://github.com/mirage/metrics";
23     license = lib.licenses.isc;
24     maintainers = [ lib.maintainers.vbgl ];
25   };