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-05-04 22:18:36 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2020-05-11 17:34:02 +0200
commit5458f4326eca06ba8d6f21d9e47e0392b99c01ce (patch)
tree943b1deae09a7b755424d27fb5cc72e0043be6ac /pkgs/development/ocaml-modules
parentee5591a6acbfec5ca4fbf5f392f77e472b6944b1 (diff)
downloadnixlib-5458f4326eca06ba8d6f21d9e47e0392b99c01ce.tar
nixlib-5458f4326eca06ba8d6f21d9e47e0392b99c01ce.tar.gz
nixlib-5458f4326eca06ba8d6f21d9e47e0392b99c01ce.tar.bz2
nixlib-5458f4326eca06ba8d6f21d9e47e0392b99c01ce.tar.lz
nixlib-5458f4326eca06ba8d6f21d9e47e0392b99c01ce.tar.xz
nixlib-5458f4326eca06ba8d6f21d9e47e0392b99c01ce.tar.zst
nixlib-5458f4326eca06ba8d6f21d9e47e0392b99c01ce.zip
ocamlPackages.async: remove at 112.24.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/default.nix23
-rw-r--r--pkgs/development/ocaml-modules/janestreet/async.nix16
2 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/development/ocaml-modules/async/default.nix b/pkgs/development/ocaml-modules/async/default.nix
deleted file mode 100644
index 230db8189de1..000000000000
--- a/pkgs/development/ocaml-modules/async/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{stdenv, buildOcaml, fetchurl, async_kernel_p4,
- async_unix_p4, async_extra_p4, pa_ounit}:
-
-buildOcaml rec {
-  name = "async";
-  version = "112.24.00";
-
-  minimumSupportedOcamlVersion = "4.02";
-
-  src = fetchurl {
-    url = "https://github.com/janestreet/async/archive/${version}.tar.gz";
-    sha256 = "ecc4ca939ab098e689332921b110dbaacd06d9f8d8bf697023dfff3ca37dc1e9";
-  };
-
-  propagatedBuildInputs = [ async_kernel_p4 async_unix_p4 async_extra_p4 pa_ounit ];
-
-  meta = with stdenv.lib; {
-    homepage = "https://github.com/janestreet/async";
-    description = "Jane Street Capital's asynchronous execution library";
-    license = licenses.asl20;
-    maintainers = [ maintainers.ericbmerritt ];
-  };
-}
diff --git a/pkgs/development/ocaml-modules/janestreet/async.nix b/pkgs/development/ocaml-modules/janestreet/async.nix
deleted file mode 100644
index 8f15531403a1..000000000000
--- a/pkgs/development/ocaml-modules/janestreet/async.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{stdenv, buildOcamlJane, async_kernel,
- async_unix, async_extra}:
-
-buildOcamlJane {
-  name = "async";
-  version = "113.33.03";
-  hash = "0wyspkp8k833fh03r3h016nbfn6kjfhvb2bg42cly6agcak59fmr";
-  propagatedBuildInputs = [ async_kernel async_unix async_extra ];
-
-  meta = with stdenv.lib; {
-    homepage = "https://github.com/janestreet/async";
-    description = "Jane Street Capital's asynchronous execution library";
-    license = licenses.asl20;
-    maintainers = [ maintainers.maurer maintainers.ericbmerritt ];
-  };
-}