depot/third_party/nixpkgs/pkgs/development/ocaml-modules/async_find/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

22 lines
642 B
Nix

{stdenv, buildOcaml, fetchurl, async_p4, core_p4, sexplib_p4}:
buildOcaml rec {
name = "async_find";
version = "111.28.00";
minimumSupportedOcamlVersion = "4.02";
src = fetchurl {
url = "https://github.com/janestreet/async_find/archive/${version}.tar.gz";
sha256 = "4e3fda72f50174f05d96a5a09323f236c041b1a685890c155822956f3deb8803";
};
propagatedBuildInputs = [ async_p4 core_p4 sexplib_p4 ];
meta = with stdenv.lib; {
homepage = "https://github.com/janestreet/async_find";
description = "Directory traversal with Async";
license = licenses.asl20;
maintainers = [ maintainers.ericbmerritt ];
};
}