about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-04-27 18:04:05 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2020-05-04 22:11:50 +0200
commit0db2daa900190760e37a0d3ba1095312759de0ae (patch)
treeca9ee83a5fff5b5d91728f6a5ced8890fba9cc31 /pkgs/development/ocaml-modules
parent9d0e9423a864a537512a1805ec6f8e9e79a0e733 (diff)
downloadnixlib-0db2daa900190760e37a0d3ba1095312759de0ae.tar
nixlib-0db2daa900190760e37a0d3ba1095312759de0ae.tar.gz
nixlib-0db2daa900190760e37a0d3ba1095312759de0ae.tar.bz2
nixlib-0db2daa900190760e37a0d3ba1095312759de0ae.tar.lz
nixlib-0db2daa900190760e37a0d3ba1095312759de0ae.tar.xz
nixlib-0db2daa900190760e37a0d3ba1095312759de0ae.tar.zst
nixlib-0db2daa900190760e37a0d3ba1095312759de0ae.zip
ocamlPackages.async_find: remove at 111.28.00
This is a legacy version for OCaml 4.02
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/async_find/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/development/ocaml-modules/async_find/default.nix b/pkgs/development/ocaml-modules/async_find/default.nix
deleted file mode 100644
index aa797cdace35..000000000000
--- a/pkgs/development/ocaml-modules/async_find/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{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 ];
-  };
-}