summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/async_find/default.nix
diff options
context:
space:
mode:
authorEric Merritt <eric@afiniate.com>2015-05-24 11:37:00 -0700
committerEric Merritt <eric@afiniate.com>2015-05-25 10:16:44 -0700
commit27541f65f3249ce2fc04023f7c22597c12c4d4da (patch)
tree4b92362f7cf6ced88389df1329cfa44116afc075 /pkgs/development/ocaml-modules/async_find/default.nix
parent9c4bda25305e03f946725326d7470e1ce77bf8b9 (diff)
downloadnixlib-27541f65f3249ce2fc04023f7c22597c12c4d4da.tar
nixlib-27541f65f3249ce2fc04023f7c22597c12c4d4da.tar.gz
nixlib-27541f65f3249ce2fc04023f7c22597c12c4d4da.tar.bz2
nixlib-27541f65f3249ce2fc04023f7c22597c12c4d4da.tar.lz
nixlib-27541f65f3249ce2fc04023f7c22597c12c4d4da.tar.xz
nixlib-27541f65f3249ce2fc04023f7c22597c12c4d4da.tar.zst
nixlib-27541f65f3249ce2fc04023f7c22597c12c4d4da.zip
ocaml-async_find: add initial version (111.28.00) to the system
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 ];
+  };
+}