1{stdenv, buildOcaml, fetchurl, async, core, sexplib}:
2
3buildOcaml rec {
4 name = "async_find";
5 version = "111.28.00";
6
7 minimumSupportedOcamlVersion = "4.02";
8
9 src = fetchurl {
10 url = "https://github.com/janestreet/async_find/archive/${version}.tar.gz";
11 sha256 = "4e3fda72f50174f05d96a5a09323f236c041b1a685890c155822956f3deb8803";
12 };
13
14 propagatedBuildInputs = [ async core sexplib ];
15
16 meta = with stdenv.lib; {
17 homepage = https://github.com/janestreet/async_find;
18 description = "Directory traversal with Async";
19 license = licenses.asl20;
20 maintainers = [ maintainers.ericbmerritt ];
21 };
22}