summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/resto/directory.nix
blob: 7539bf98ffd6fef96d89c582bd711c4c0eee0199 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ lib, buildDunePackage, resto, resto-json, lwt }:

buildDunePackage {
  pname = "resto-directory";
  inherit (resto) src version meta useDune2 doCheck;

  propagatedBuildInputs = [
    resto
    lwt
  ];
}