about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/metrics
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-11-27 18:34:14 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2019-12-04 15:37:36 +0000
commit8ad01c336266603ccfc3f15836701c30b236050e (patch)
tree85d6760e8693e9d3a84b155100febebadf9b9847 /pkgs/development/ocaml-modules/metrics
parent5d0dd4e536b5bfd507da7df26ceeaaabc3676a7a (diff)
ocamlPackages.metrics-lwt: init at 0.1.0
Diffstat (limited to 'pkgs/development/ocaml-modules/metrics')
-rw-r--r--pkgs/development/ocaml-modules/metrics/lwt.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/metrics/lwt.nix b/pkgs/development/ocaml-modules/metrics/lwt.nix
new file mode 100644
index 0000000000000..47b91e430c65e
--- /dev/null
+++ b/pkgs/development/ocaml-modules/metrics/lwt.nix
@@ -0,0 +1,14 @@
+{ buildDunePackage, ocaml_lwt, metrics }:
+
+buildDunePackage {
+  pname = "metrics-lwt";
+
+  inherit (metrics) version src;
+
+  propagatedBuildInputs = [ ocaml_lwt metrics ];
+
+  meta = metrics.meta // {
+    description = "Lwt backend for the Metrics library";
+  };
+
+}