summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/async_find/default.nix
diff options
context:
space:
mode:
authorts468 <ts468@users.noreply.github.com>2015-09-06 21:15:10 +0200
committerts468 <ts468@users.noreply.github.com>2015-09-06 21:15:10 +0200
commit054be41e04e2f583433c8d69f73f63389aec7f77 (patch)
tree57b99067b9535540280af72c31b134d8ba8e1589 /pkgs/development/ocaml-modules/async_find/default.nix
parenta9dab9df6110f6f5c8300c4408c845d8176539bd (diff)
Revert "ocaml-modules: fix naming: "_" -> "-""
Diffstat (limited to 'pkgs/development/ocaml-modules/async_find/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/async_find/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/async_find/default.nix b/pkgs/development/ocaml-modules/async_find/default.nix
new file mode 100644
index 000000000000..ae10e931ce25
--- /dev/null
+++ b/pkgs/development/ocaml-modules/async_find/default.nix
@@ -0,0 +1,22 @@
+{stdenv, buildOcaml, fetchurl, async, core, sexplib}:
+
+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 core sexplib ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/janestreet/async_find;
+ description = "Directory traversal with Async";
+ license = licenses.asl20;
+ maintainers = [ maintainers.ericbmerritt ];
+ };
+}