about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-05-01 10:28:55 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2020-05-01 10:32:31 +0200
commit258e3287a504e1cc1790c03546cb38f8354b2ece (patch)
treeb501da2e0a4d9166c367d8c489140e3a8ae99800 /pkgs/development/ocaml-modules/janestreet
parentcda586dd6b08381eb6196505b657e2bc10e96cf8 (diff)
downloadnixlib-258e3287a504e1cc1790c03546cb38f8354b2ece.tar
nixlib-258e3287a504e1cc1790c03546cb38f8354b2ece.tar.gz
nixlib-258e3287a504e1cc1790c03546cb38f8354b2ece.tar.bz2
nixlib-258e3287a504e1cc1790c03546cb38f8354b2ece.tar.lz
nixlib-258e3287a504e1cc1790c03546cb38f8354b2ece.tar.xz
nixlib-258e3287a504e1cc1790c03546cb38f8354b2ece.tar.zst
nixlib-258e3287a504e1cc1790c03546cb38f8354b2ece.zip
ocamlPackages.core_extended: remove at 112.24.00
This is a legacy version for OCaml 4.02
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/core-extended.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/core-extended.nix b/pkgs/development/ocaml-modules/janestreet/core-extended.nix
deleted file mode 100644
index 19550a82327a..000000000000
--- a/pkgs/development/ocaml-modules/janestreet/core-extended.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{stdenv, buildOcamlJane,
- core,
- bin_prot, fieldslib, sexplib, typerep, variantslib,
- ppx_assert, ppx_bench, ppx_driver, ppx_expect, ppx_inline_test, ppx_jane,
- re2, textutils}:
-
-buildOcamlJane {
-  name = "core_extended";
-  hash = "1j4ipcn741j8w3h4gpv5sygjzg6b5g6gc2jcrr4n0jyn5dq8b0p5";
-  propagatedBuildInputs =
-    [ core bin_prot fieldslib sexplib typerep variantslib
-      ppx_assert ppx_bench ppx_driver ppx_expect ppx_inline_test ppx_jane
-      re2 textutils ];
-
-  patchPhase = stdenv.lib.optionalString stdenv.isLinux ''
-    patch src/extended_unix_stubs.c <<EOF
-0a1
-> #define _LINUX_QUOTA_VERSION 2
-EOF
-  '';
-
-  meta = with stdenv.lib; {
-    homepage = "https://github.com/janestreet/core_extended";
-    description = "Jane Street Capital's standard library overlay";
-    license = licenses.asl20;
-    maintainers = [ maintainers.maurer maintainers.ericbmerritt ];
-  };
-}