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-25 09:46:24 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2020-04-25 09:51:56 +0200
commit05db4f4fb9ba55662783bae84f7d936326141f30 (patch)
treebc864bad4be9be93aeebe89a899a3cd12d0eaa3d /pkgs/development/ocaml-modules
parentfcf547d0e23b4be19fdd877a1e31dff0d0b0498d (diff)
downloadnixlib-05db4f4fb9ba55662783bae84f7d936326141f30.tar
nixlib-05db4f4fb9ba55662783bae84f7d936326141f30.tar.gz
nixlib-05db4f4fb9ba55662783bae84f7d936326141f30.tar.bz2
nixlib-05db4f4fb9ba55662783bae84f7d936326141f30.tar.lz
nixlib-05db4f4fb9ba55662783bae84f7d936326141f30.tar.xz
nixlib-05db4f4fb9ba55662783bae84f7d936326141f30.tar.zst
nixlib-05db4f4fb9ba55662783bae84f7d936326141f30.zip
ocamlPackages.async_shell: remove at 109.28.03
This is a legacy version for OCaml 4.02
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/async_shell/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/development/ocaml-modules/async_shell/default.nix b/pkgs/development/ocaml-modules/async_shell/default.nix
deleted file mode 100644
index 62b64a492d6f..000000000000
--- a/pkgs/development/ocaml-modules/async_shell/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{stdenv, buildOcaml, fetchurl, async_p4, core_p4, core_extended_p4}:
-
-buildOcaml rec {
-  name = "async_shell";
-  version = "109.28.03";
-
-  minimumSupportedOcamlVersion = "4.02";
-
-  src = fetchurl {
-    url = "https://github.com/janestreet/async_shell/archive/${version}.tar.gz";
-    sha256 = "0b4497bea9124c5a665ee58fb0a73c5cbf2f757479df902e6870627196e6c105";
-  };
-
-  propagatedBuildInputs = [ async_p4 core_p4 core_extended_p4 ];
-
-  meta = with stdenv.lib; {
-    homepage = "https://github.com/janestreet/async_shell";
-    description = "Shell helpers for Async";
-    license = licenses.asl20;
-    maintainers = [ maintainers.ericbmerritt ];
-  };
-}