about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/resto/directory.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/ocaml-modules/resto/directory.nix')
-rw-r--r--nixpkgs/pkgs/development/ocaml-modules/resto/directory.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/ocaml-modules/resto/directory.nix b/nixpkgs/pkgs/development/ocaml-modules/resto/directory.nix
new file mode 100644
index 000000000000..7539bf98ffd6
--- /dev/null
+++ b/nixpkgs/pkgs/development/ocaml-modules/resto/directory.nix
@@ -0,0 +1,11 @@
+{ lib, buildDunePackage, resto, resto-json, lwt }:
+
+buildDunePackage {
+  pname = "resto-directory";
+  inherit (resto) src version meta useDune2 doCheck;
+
+  propagatedBuildInputs = [
+    resto
+    lwt
+  ];
+}