about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/aches/lwt.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/ocaml-modules/aches/lwt.nix')
-rw-r--r--nixpkgs/pkgs/development/ocaml-modules/aches/lwt.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/ocaml-modules/aches/lwt.nix b/nixpkgs/pkgs/development/ocaml-modules/aches/lwt.nix
new file mode 100644
index 000000000000..bfb57a5a91aa
--- /dev/null
+++ b/nixpkgs/pkgs/development/ocaml-modules/aches/lwt.nix
@@ -0,0 +1,17 @@
+{ lib, buildDunePackage, ringo, aches, lwt }:
+
+buildDunePackage {
+  pname = "aches-lwt";
+  inherit (ringo) src version;
+
+  propagatedBuildInputs = [
+    aches
+    lwt
+  ];
+
+  meta = {
+    description = "Caches (bounded-size stores) for Lwt promises";
+    license = lib.licenses.mit;
+    maintainers = [ lib.maintainers.ulrikstrid ];
+  };
+}