2019-01-03 14:58:36 -08:00
|
|
|
{ lib, newScope, pkgs, config }:
|
2016-09-19 10:00:42 -07:00
|
|
|
|
|
|
|
let
|
2019-01-03 14:58:36 -08:00
|
|
|
liftJaneStreet = self: super: super.janeStreet // super;
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2019-01-03 14:58:36 -08:00
|
|
|
mkOcamlPackages = ocaml:
|
|
|
|
(lib.makeScope newScope (self: with self;
|
|
|
|
{
|
2016-09-19 10:00:42 -07:00
|
|
|
inherit ocaml;
|
|
|
|
|
|
|
|
# Libs
|
|
|
|
|
|
|
|
buildOcaml = callPackage ../build-support/ocaml { };
|
|
|
|
|
2019-08-06 08:54:09 -07:00
|
|
|
buildOasisPackage = callPackage ../build-support/ocaml/oasis.nix { };
|
2019-08-01 01:44:04 -07:00
|
|
|
|
2018-11-05 02:21:46 -08:00
|
|
|
buildDunePackage = callPackage ../build-support/ocaml/dune.nix {};
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
alcotest = callPackage ../development/ocaml-modules/alcotest {};
|
|
|
|
|
2017-02-17 14:18:48 -08:00
|
|
|
angstrom = callPackage ../development/ocaml-modules/angstrom { };
|
|
|
|
|
2019-10-28 07:53:50 -07:00
|
|
|
angstrom-async = callPackage ../development/ocaml-modules/angstrom-async { };
|
|
|
|
|
2019-10-28 07:54:52 -07:00
|
|
|
angstrom-lwt-unix = callPackage ../development/ocaml-modules/angstrom-lwt-unix { };
|
|
|
|
|
2019-10-28 07:56:15 -07:00
|
|
|
angstrom-unix = callPackage ../development/ocaml-modules/angstrom-unix { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ansiterminal = callPackage ../development/ocaml-modules/ansiterminal { };
|
|
|
|
|
2016-10-12 03:35:21 -07:00
|
|
|
apron = callPackage ../development/ocaml-modules/apron { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
asn1-combinators = callPackage ../development/ocaml-modules/asn1-combinators { };
|
|
|
|
|
2016-11-02 18:12:14 -07:00
|
|
|
astring = callPackage ../development/ocaml-modules/astring { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
async_extra_p4 = callPackage ../development/ocaml-modules/async_extra { };
|
|
|
|
|
2017-05-22 04:37:01 -07:00
|
|
|
async_find =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.async_find
|
|
|
|
else callPackage ../development/ocaml-modules/async_find { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
|
|
|
async_kernel_p4 = callPackage ../development/ocaml-modules/async_kernel { };
|
|
|
|
|
2017-05-22 04:37:01 -07:00
|
|
|
async_shell =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.async_shell
|
|
|
|
else callPackage ../development/ocaml-modules/async_shell { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
|
|
|
async_unix_p4 = callPackage ../development/ocaml-modules/async_unix { };
|
|
|
|
|
|
|
|
async_p4 =
|
2016-10-05 00:32:30 -07:00
|
|
|
if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/async { }
|
|
|
|
else null;
|
|
|
|
|
|
|
|
atd = callPackage ../development/ocaml-modules/atd { };
|
|
|
|
|
2018-12-10 12:14:42 -08:00
|
|
|
atdgen = callPackage ../development/ocaml-modules/atdgen { };
|
|
|
|
|
2019-04-06 06:17:37 -07:00
|
|
|
base64_2 = callPackage ../development/ocaml-modules/base64/2.0.nix { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
base64 = callPackage ../development/ocaml-modules/base64 { };
|
|
|
|
|
2019-09-03 12:26:27 -07:00
|
|
|
bap = callPackage ../development/ocaml-modules/bap {
|
|
|
|
llvm = pkgs.llvm_8;
|
|
|
|
};
|
2017-01-24 23:08:03 -08:00
|
|
|
|
2017-11-14 09:43:21 -08:00
|
|
|
batteries = callPackage ../development/ocaml-modules/batteries { };
|
|
|
|
|
2019-08-24 00:02:21 -07:00
|
|
|
bigarray-compat = callPackage ../development/ocaml-modules/bigarray-compat { };
|
|
|
|
|
2018-07-21 23:11:39 -07:00
|
|
|
bigstringaf = callPackage ../development/ocaml-modules/bigstringaf { };
|
|
|
|
|
2019-06-12 23:40:48 -07:00
|
|
|
bistro = callPackage ../development/ocaml-modules/bistro { };
|
|
|
|
|
2017-03-28 22:24:58 -07:00
|
|
|
bitstring = callPackage ../development/ocaml-modules/bitstring { };
|
|
|
|
|
2018-02-12 15:11:17 -08:00
|
|
|
bitv = callPackage ../development/ocaml-modules/bitv { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
bolt = callPackage ../development/ocaml-modules/bolt { };
|
|
|
|
|
2017-03-16 00:11:33 -07:00
|
|
|
bos = callPackage ../development/ocaml-modules/bos { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
camlidl = callPackage ../development/tools/ocaml/camlidl { };
|
|
|
|
|
|
|
|
camlp4 =
|
2016-10-07 23:45:59 -07:00
|
|
|
if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/tools/ocaml/camlp4 { }
|
|
|
|
else null;
|
|
|
|
|
2018-10-10 08:27:19 -07:00
|
|
|
camlp5 = callPackage ../development/tools/ocaml/camlp5 { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2018-10-10 08:27:19 -07:00
|
|
|
# Compatibility alias
|
|
|
|
camlp5_strict = camlp5;
|
2016-09-19 10:00:42 -07:00
|
|
|
|
|
|
|
camlpdf = callPackage ../development/ocaml-modules/camlpdf { };
|
|
|
|
|
|
|
|
calendar = callPackage ../development/ocaml-modules/calendar { };
|
|
|
|
|
|
|
|
camlzip = callPackage ../development/ocaml-modules/camlzip { };
|
|
|
|
|
|
|
|
camomile_0_8_2 = callPackage ../development/ocaml-modules/camomile/0.8.2.nix { };
|
2017-10-19 14:09:20 -07:00
|
|
|
camomile =
|
2017-11-09 10:52:03 -08:00
|
|
|
if lib.versionOlder "4.02" ocaml.version
|
2017-10-19 14:09:20 -07:00
|
|
|
then callPackage ../development/ocaml-modules/camomile { }
|
|
|
|
else callPackage ../development/ocaml-modules/camomile/0.8.5.nix { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-16 06:03:20 -08:00
|
|
|
camlimages_4_0 =
|
|
|
|
if lib.versionOlder "4.02" ocaml.version
|
|
|
|
then null
|
|
|
|
else callPackage ../development/ocaml-modules/camlimages/4.0.nix {
|
2016-09-19 10:00:42 -07:00
|
|
|
libpng = pkgs.libpng12;
|
|
|
|
giflib = pkgs.giflib_4_1;
|
|
|
|
};
|
|
|
|
camlimages_4_1 = callPackage ../development/ocaml-modules/camlimages/4.1.nix {
|
|
|
|
giflib = pkgs.giflib_4_1;
|
|
|
|
};
|
2018-03-07 02:09:32 -08:00
|
|
|
camlimages =
|
2018-03-07 18:49:48 -08:00
|
|
|
if lib.versionOlder "4.06" ocaml.version
|
2018-03-07 02:09:32 -08:00
|
|
|
then callPackage ../development/ocaml-modules/camlimages { }
|
|
|
|
else camlimages_4_1;
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-07-04 14:39:37 -07:00
|
|
|
benchmark = callPackage ../development/ocaml-modules/benchmark { };
|
|
|
|
|
2017-10-06 13:23:12 -07:00
|
|
|
biniou =
|
|
|
|
if lib.versionOlder "4.02" ocaml.version
|
|
|
|
then callPackage ../development/ocaml-modules/biniou { }
|
|
|
|
else callPackage ../development/ocaml-modules/biniou/1.0.nix { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
|
|
|
bin_prot_p4 = callPackage ../development/ocaml-modules/bin_prot { };
|
|
|
|
|
2018-11-30 03:46:14 -08:00
|
|
|
bisect_ppx = callPackage ../development/ocaml-modules/bisect_ppx { };
|
|
|
|
bisect_ppx-ocamlbuild = callPackage ../development/ocaml-modules/bisect_ppx-ocamlbuild { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ocaml_cairo = callPackage ../development/ocaml-modules/ocaml-cairo { };
|
|
|
|
|
2017-12-09 00:38:50 -08:00
|
|
|
cairo2 = callPackage ../development/ocaml-modules/cairo2 { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2019-08-15 02:05:53 -07:00
|
|
|
charInfo_width = callPackage ../development/ocaml-modules/charInfo_width { };
|
|
|
|
|
2018-11-03 23:49:33 -07:00
|
|
|
checkseum = callPackage ../development/ocaml-modules/checkseum { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
cil = callPackage ../development/ocaml-modules/cil { };
|
|
|
|
|
2017-09-07 21:09:11 -07:00
|
|
|
cmdliner = callPackage ../development/ocaml-modules/cmdliner { };
|
2017-05-31 12:16:24 -07:00
|
|
|
|
2017-07-01 04:16:27 -07:00
|
|
|
cohttp_p4 = callPackage ../development/ocaml-modules/cohttp/0.19.3.nix {
|
2019-04-06 06:17:37 -07:00
|
|
|
base64 = base64_2;
|
2017-07-02 08:22:04 -07:00
|
|
|
lwt = lwt2;
|
2016-09-19 10:00:42 -07:00
|
|
|
};
|
|
|
|
|
2017-07-01 04:16:27 -07:00
|
|
|
cohttp =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2019-04-06 06:54:37 -07:00
|
|
|
then callPackage ../development/ocaml-modules/cohttp { }
|
2017-07-01 04:16:27 -07:00
|
|
|
else cohttp_p4;
|
|
|
|
|
2017-08-27 12:00:55 -07:00
|
|
|
cohttp-lwt = callPackage ../development/ocaml-modules/cohttp/lwt.nix { };
|
|
|
|
|
|
|
|
cohttp-lwt-unix = callPackage ../development/ocaml-modules/cohttp/lwt-unix.nix { };
|
|
|
|
|
2017-07-01 03:18:34 -07:00
|
|
|
conduit_p4 = callPackage ../development/ocaml-modules/conduit/0.10.0.nix {
|
2017-07-02 08:22:04 -07:00
|
|
|
lwt = lwt2;
|
2017-07-01 03:18:34 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
conduit =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then callPackage ../development/ocaml-modules/conduit { }
|
|
|
|
else conduit_p4;
|
|
|
|
|
2017-08-27 12:00:55 -07:00
|
|
|
conduit-lwt = callPackage ../development/ocaml-modules/conduit/lwt.nix { };
|
|
|
|
|
|
|
|
conduit-lwt-unix = callPackage ../development/ocaml-modules/conduit/lwt-unix.nix { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
config-file = callPackage ../development/ocaml-modules/config-file { };
|
|
|
|
|
|
|
|
containers = callPackage ../development/ocaml-modules/containers { };
|
|
|
|
|
2017-02-18 13:58:29 -08:00
|
|
|
cow = callPackage ../development/ocaml-modules/cow { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
cpdf = callPackage ../development/ocaml-modules/cpdf { };
|
|
|
|
|
|
|
|
cppo = callPackage ../development/tools/ocaml/cppo { };
|
|
|
|
|
2017-03-13 13:17:29 -07:00
|
|
|
cpuid = callPackage ../development/ocaml-modules/cpuid { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
cryptokit = callPackage ../development/ocaml-modules/cryptokit { };
|
|
|
|
|
2017-11-27 11:08:40 -08:00
|
|
|
cstruct =
|
|
|
|
if lib.versionAtLeast ocaml.version "4.2"
|
|
|
|
then callPackage ../development/ocaml-modules/cstruct {}
|
|
|
|
else callPackage ../development/ocaml-modules/cstruct/1.9.0.nix { lwt = ocaml_lwt; };
|
|
|
|
|
|
|
|
cstruct-lwt = callPackage ../development/ocaml-modules/cstruct/lwt.nix {
|
2016-09-19 10:00:42 -07:00
|
|
|
lwt = ocaml_lwt;
|
|
|
|
};
|
|
|
|
|
2019-08-24 00:02:26 -07:00
|
|
|
cstruct-sexp = callPackage ../development/ocaml-modules/cstruct/sexp.nix {};
|
|
|
|
|
2017-11-27 11:08:40 -08:00
|
|
|
cstruct-unix = callPackage ../development/ocaml-modules/cstruct/unix.nix {};
|
|
|
|
|
2017-09-19 22:38:42 -07:00
|
|
|
csv =
|
|
|
|
if lib.versionAtLeast ocaml.version "4.2"
|
|
|
|
then callPackage ../development/ocaml-modules/csv { }
|
|
|
|
else callPackage ../development/ocaml-modules/csv/1.5.nix { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2018-12-16 02:46:31 -08:00
|
|
|
csv-lwt = callPackage ../development/ocaml-modules/csv/lwt.nix { };
|
|
|
|
|
2018-02-23 05:19:51 -08:00
|
|
|
curses = callPackage ../development/ocaml-modules/curses { };
|
2017-02-04 07:07:45 -08:00
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
custom_printf = callPackage ../development/ocaml-modules/custom_printf { };
|
|
|
|
|
|
|
|
ctypes = callPackage ../development/ocaml-modules/ctypes { };
|
|
|
|
|
2017-07-01 05:57:36 -07:00
|
|
|
decompress = callPackage ../development/ocaml-modules/decompress { };
|
|
|
|
|
2017-12-05 10:19:25 -08:00
|
|
|
digestif = callPackage ../development/ocaml-modules/digestif { };
|
|
|
|
|
2017-01-28 09:37:44 -08:00
|
|
|
dolmen = callPackage ../development/ocaml-modules/dolmen { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
dolog = callPackage ../development/ocaml-modules/dolog { };
|
|
|
|
|
2019-08-24 00:02:11 -07:00
|
|
|
domain-name = callPackage ../development/ocaml-modules/domain-name { };
|
|
|
|
|
2018-01-01 01:43:27 -08:00
|
|
|
dtoa = callPackage ../development/ocaml-modules/dtoa { };
|
|
|
|
|
2019-10-06 23:24:04 -07:00
|
|
|
duff = callPackage ../development/ocaml-modules/duff { };
|
|
|
|
|
2019-03-20 03:28:28 -07:00
|
|
|
dune = callPackage ../development/tools/ocaml/dune { };
|
|
|
|
|
2018-05-19 14:01:40 -07:00
|
|
|
earley = callPackage ../development/ocaml-modules/earley { };
|
|
|
|
|
2019-10-27 19:07:32 -07:00
|
|
|
earlybird = callPackage ../development/ocaml-modules/earlybird { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
easy-format = callPackage ../development/ocaml-modules/easy-format { };
|
|
|
|
|
2018-12-08 20:52:24 -08:00
|
|
|
elina = callPackage ../development/ocaml-modules/elina { };
|
|
|
|
|
2019-01-14 14:52:07 -08:00
|
|
|
eliom = callPackage ../development/ocaml-modules/eliom { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2018-09-19 22:45:31 -07:00
|
|
|
elpi = callPackage ../development/ocaml-modules/elpi { };
|
|
|
|
|
2019-10-20 13:31:33 -07:00
|
|
|
encore = callPackage ../development/ocaml-modules/encore { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
enumerate = callPackage ../development/ocaml-modules/enumerate { };
|
|
|
|
|
2019-10-06 23:44:19 -07:00
|
|
|
eqaf = callPackage ../development/ocaml-modules/eqaf { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
erm_xml = callPackage ../development/ocaml-modules/erm_xml { };
|
|
|
|
|
|
|
|
erm_xmpp = callPackage ../development/ocaml-modules/erm_xmpp { };
|
|
|
|
|
|
|
|
estring = callPackage ../development/ocaml-modules/estring { };
|
|
|
|
|
2018-07-05 13:31:18 -07:00
|
|
|
ezjsonm = callPackage ../development/ocaml-modules/ezjsonm { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2018-10-06 00:44:22 -07:00
|
|
|
ezxmlm = callPackage ../development/ocaml-modules/ezxmlm { };
|
|
|
|
|
2017-12-03 04:15:36 -08:00
|
|
|
facile = callPackage ../development/ocaml-modules/facile { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
faillib = callPackage ../development/ocaml-modules/faillib { };
|
|
|
|
|
2017-12-05 10:16:19 -08:00
|
|
|
faraday = callPackage ../development/ocaml-modules/faraday { };
|
|
|
|
|
2017-12-05 10:17:54 -08:00
|
|
|
farfadet = callPackage ../development/ocaml-modules/farfadet { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
fieldslib_p4 = callPackage ../development/ocaml-modules/fieldslib { };
|
|
|
|
|
|
|
|
fileutils = callPackage ../development/ocaml-modules/fileutils { };
|
|
|
|
|
|
|
|
findlib = callPackage ../development/tools/ocaml/findlib { };
|
|
|
|
|
|
|
|
fix = callPackage ../development/ocaml-modules/fix { };
|
|
|
|
|
2016-10-25 10:19:35 -07:00
|
|
|
fmt = callPackage ../development/ocaml-modules/fmt { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
fontconfig = callPackage ../development/ocaml-modules/fontconfig {
|
|
|
|
inherit (pkgs) fontconfig;
|
|
|
|
};
|
|
|
|
|
2017-01-18 21:51:49 -08:00
|
|
|
fpath = callPackage ../development/ocaml-modules/fpath { };
|
|
|
|
|
2017-03-16 19:37:38 -07:00
|
|
|
functoria = callPackage ../development/ocaml-modules/functoria { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
functory = callPackage ../development/ocaml-modules/functory { };
|
|
|
|
|
|
|
|
gen = callPackage ../development/ocaml-modules/gen { };
|
|
|
|
|
2019-08-24 00:02:17 -07:00
|
|
|
gmap = callPackage ../development/ocaml-modules/gmap { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
herelib = callPackage ../development/ocaml-modules/herelib { };
|
|
|
|
|
2017-03-23 00:58:25 -07:00
|
|
|
higlo = callPackage ../development/ocaml-modules/higlo { };
|
|
|
|
|
2019-06-01 18:33:22 -07:00
|
|
|
hmap = callPackage ../development/ocaml-modules/hmap { };
|
|
|
|
|
2018-05-23 01:33:26 -07:00
|
|
|
imagelib = callPackage ../development/ocaml-modules/imagelib { };
|
|
|
|
|
2019-10-20 22:36:52 -07:00
|
|
|
imagelib-unix = callPackage ../development/ocaml-modules/imagelib/unix.nix { };
|
|
|
|
|
2017-07-02 06:03:48 -07:00
|
|
|
inotify = callPackage ../development/ocaml-modules/inotify { };
|
|
|
|
|
2017-07-11 14:11:53 -07:00
|
|
|
integers = callPackage ../development/ocaml-modules/integers { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
io-page = callPackage ../development/ocaml-modules/io-page { };
|
|
|
|
|
2017-02-18 13:54:02 -08:00
|
|
|
ipaddr_p4 = callPackage ../development/ocaml-modules/ipaddr/2.6.1.nix { };
|
|
|
|
|
|
|
|
ipaddr =
|
|
|
|
if lib.versionOlder "4.02" ocaml.version
|
|
|
|
then callPackage ../development/ocaml-modules/ipaddr { }
|
|
|
|
else ipaddr_p4;
|
2016-09-19 10:00:42 -07:00
|
|
|
|
|
|
|
iso8601 = callPackage ../development/ocaml-modules/iso8601 { };
|
|
|
|
|
2019-09-19 22:29:05 -07:00
|
|
|
iter = callPackage ../development/ocaml-modules/iter { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
javalib = callPackage ../development/ocaml-modules/javalib {
|
2018-08-14 05:53:30 -07:00
|
|
|
extlib = ocaml_extlib;
|
2016-09-19 10:00:42 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
dypgen = callPackage ../development/ocaml-modules/dypgen { };
|
|
|
|
|
|
|
|
gapi_ocaml = callPackage ../development/ocaml-modules/gapi-ocaml { };
|
|
|
|
|
|
|
|
gg = callPackage ../development/ocaml-modules/gg { };
|
|
|
|
|
2019-10-20 22:36:52 -07:00
|
|
|
git = callPackage ../development/ocaml-modules/git { inherit (pkgs) git; };
|
2017-07-01 06:02:08 -07:00
|
|
|
|
2017-07-02 01:26:39 -07:00
|
|
|
git-http = callPackage ../development/ocaml-modules/git-http { };
|
|
|
|
|
2017-07-02 01:38:28 -07:00
|
|
|
git-unix = callPackage ../development/ocaml-modules/git-unix { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
gmetadom = callPackage ../development/ocaml-modules/gmetadom { };
|
|
|
|
|
|
|
|
gtktop = callPackage ../development/ocaml-modules/gtktop { };
|
|
|
|
|
|
|
|
hex = callPackage ../development/ocaml-modules/hex { };
|
|
|
|
|
2018-07-22 00:00:45 -07:00
|
|
|
httpaf = callPackage ../development/ocaml-modules/httpaf { };
|
|
|
|
|
2017-03-21 11:12:06 -07:00
|
|
|
inifiles = callPackage ../development/ocaml-modules/inifiles { };
|
|
|
|
|
2018-07-09 10:15:42 -07:00
|
|
|
iri = callPackage ../development/ocaml-modules/iri { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
jingoo = callPackage ../development/ocaml-modules/jingoo {
|
|
|
|
pcre = ocaml_pcre;
|
|
|
|
};
|
|
|
|
|
2017-08-27 07:44:39 -07:00
|
|
|
js_of_ocaml =
|
|
|
|
if lib.versionOlder "4.02" ocaml.version
|
|
|
|
then callPackage ../development/tools/ocaml/js_of_ocaml/3.0.nix { }
|
|
|
|
else js_of_ocaml_2;
|
|
|
|
|
2019-04-06 06:17:37 -07:00
|
|
|
js_of_ocaml_2 = callPackage ../development/tools/ocaml/js_of_ocaml {
|
|
|
|
base64 = base64_2;
|
|
|
|
lwt = lwt2;
|
|
|
|
};
|
2017-08-27 07:44:39 -07:00
|
|
|
|
|
|
|
js_of_ocaml-camlp4 = callPackage ../development/tools/ocaml/js_of_ocaml/camlp4.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-08-27 07:29:57 -07:00
|
|
|
js_of_ocaml-compiler = callPackage ../development/tools/ocaml/js_of_ocaml/compiler.nix {};
|
2017-08-24 10:49:05 -07:00
|
|
|
|
2018-03-31 22:34:40 -07:00
|
|
|
js_of_ocaml-lwt = callPackage ../development/tools/ocaml/js_of_ocaml/lwt.nix {};
|
|
|
|
|
2017-08-27 07:32:39 -07:00
|
|
|
js_of_ocaml-ocamlbuild = callPackage ../development/tools/ocaml/js_of_ocaml/ocamlbuild.nix {};
|
|
|
|
|
2017-08-27 07:44:39 -07:00
|
|
|
js_of_ocaml-ppx = callPackage ../development/tools/ocaml/js_of_ocaml/ppx.nix {};
|
|
|
|
|
2018-03-31 03:29:13 -07:00
|
|
|
js_of_ocaml-ppx_deriving_json = callPackage ../development/tools/ocaml/js_of_ocaml/ppx_deriving_json.nix {};
|
|
|
|
|
2018-04-11 10:54:19 -07:00
|
|
|
js_of_ocaml-tyxml = callPackage ../development/tools/ocaml/js_of_ocaml/tyxml.nix {};
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
jsonm = callPackage ../development/ocaml-modules/jsonm { };
|
|
|
|
|
2019-10-20 13:31:10 -07:00
|
|
|
ke = callPackage ../development/ocaml-modules/ke { };
|
|
|
|
|
2017-02-09 00:14:51 -08:00
|
|
|
lablgl = callPackage ../development/ocaml-modules/lablgl { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2019-03-26 07:11:37 -07:00
|
|
|
lablgtk3 = callPackage ../development/ocaml-modules/lablgtk3 { };
|
2019-02-13 13:26:50 -08:00
|
|
|
|
|
|
|
lablgtk3-gtkspell3 = callPackage ../development/ocaml-modules/lablgtk3/gtkspell3.nix { };
|
|
|
|
|
|
|
|
lablgtk3-sourceview3 = callPackage ../development/ocaml-modules/lablgtk3/sourceview3.nix { };
|
2018-12-03 04:10:15 -08:00
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
lablgtk_2_14 = callPackage ../development/ocaml-modules/lablgtk/2.14.0.nix {
|
|
|
|
inherit (pkgs.gnome2) libgnomecanvas libglade gtksourceview;
|
|
|
|
};
|
|
|
|
lablgtk = callPackage ../development/ocaml-modules/lablgtk {
|
|
|
|
inherit (pkgs.gnome2) libgnomecanvas libglade gtksourceview;
|
|
|
|
};
|
|
|
|
|
|
|
|
lablgtk-extras =
|
2016-10-05 00:32:30 -07:00
|
|
|
if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/lablgtk-extras { }
|
|
|
|
else callPackage ../development/ocaml-modules/lablgtk-extras/1.4.nix { };
|
|
|
|
|
|
|
|
lablgtkmathview = callPackage ../development/ocaml-modules/lablgtkmathview {
|
|
|
|
gtkmathview = callPackage ../development/libraries/gtkmathview { };
|
|
|
|
};
|
|
|
|
|
2018-07-29 01:35:35 -07:00
|
|
|
labltk = callPackage ../development/ocaml-modules/labltk { };
|
|
|
|
|
2019-03-20 04:03:38 -07:00
|
|
|
lacaml = callPackage ../development/ocaml-modules/lacaml { };
|
|
|
|
|
2019-07-25 10:01:07 -07:00
|
|
|
lambdasoup = callPackage ../development/ocaml-modules/lambdasoup { };
|
|
|
|
|
2019-08-20 22:10:10 -07:00
|
|
|
lambdaTerm = callPackage ../development/ocaml-modules/lambda-term { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2018-06-05 11:29:00 -07:00
|
|
|
linenoise = callPackage ../development/ocaml-modules/linenoise { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
llvm = callPackage ../development/ocaml-modules/llvm {
|
2019-09-03 12:25:23 -07:00
|
|
|
llvm = pkgs.llvm_8;
|
2016-09-19 10:00:42 -07:00
|
|
|
};
|
|
|
|
|
2017-02-18 13:57:45 -08:00
|
|
|
logs = callPackage ../development/ocaml-modules/logs {
|
|
|
|
lwt = ocaml_lwt;
|
|
|
|
};
|
|
|
|
|
2017-12-05 10:12:56 -08:00
|
|
|
lru = callPackage ../development/ocaml-modules/lru { };
|
|
|
|
|
2018-03-25 11:26:39 -07:00
|
|
|
lwt2 = callPackage ../development/ocaml-modules/lwt/legacy.nix { };
|
2017-07-02 08:22:04 -07:00
|
|
|
|
2018-09-28 08:28:36 -07:00
|
|
|
lwt4 = callPackage ../development/ocaml-modules/lwt/4.x.nix { };
|
|
|
|
|
|
|
|
ocaml_lwt = if lib.versionOlder "4.02" ocaml.version then lwt4 else lwt2;
|
2017-07-02 08:22:04 -07:00
|
|
|
|
2019-01-14 14:51:47 -08:00
|
|
|
lwt_camlp4 = callPackage ../development/ocaml-modules/lwt/camlp4.nix { };
|
|
|
|
|
2018-07-12 14:25:59 -07:00
|
|
|
lwt_log = callPackage ../development/ocaml-modules/lwt_log {
|
2018-09-28 08:28:36 -07:00
|
|
|
lwt = lwt4;
|
2018-07-12 14:25:59 -07:00
|
|
|
};
|
|
|
|
|
2018-03-27 13:34:08 -07:00
|
|
|
lwt_ppx = callPackage ../development/ocaml-modules/lwt/ppx.nix {
|
2018-09-28 08:28:36 -07:00
|
|
|
lwt = ocaml_lwt;
|
2018-03-27 13:34:08 -07:00
|
|
|
};
|
|
|
|
|
2017-07-02 04:39:53 -07:00
|
|
|
lwt_react = callPackage ../development/ocaml-modules/lwt_react {
|
2018-09-28 08:28:36 -07:00
|
|
|
lwt = ocaml_lwt;
|
2017-07-02 04:39:53 -07:00
|
|
|
};
|
|
|
|
|
2018-02-01 22:39:50 -08:00
|
|
|
lwt_ssl = callPackage ../development/ocaml-modules/lwt_ssl {
|
2018-09-28 08:28:36 -07:00
|
|
|
lwt = ocaml_lwt;
|
2018-02-01 22:39:50 -08:00
|
|
|
};
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
macaque = callPackage ../development/ocaml-modules/macaque { };
|
|
|
|
|
|
|
|
magic-mime = callPackage ../development/ocaml-modules/magic-mime { };
|
|
|
|
|
|
|
|
magick = callPackage ../development/ocaml-modules/magick { };
|
|
|
|
|
2017-12-09 01:33:32 -08:00
|
|
|
markup = callPackage ../development/ocaml-modules/markup { lwt = ocaml_lwt; };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2019-06-18 07:26:38 -07:00
|
|
|
mdx = callPackage ../development/ocaml-modules/mdx { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
menhir = callPackage ../development/ocaml-modules/menhir { };
|
|
|
|
|
|
|
|
merlin = callPackage ../development/tools/ocaml/merlin { };
|
|
|
|
|
2019-07-25 09:24:18 -07:00
|
|
|
merlin-extend = callPackage ../development/ocaml-modules/merlin-extend { };
|
2017-04-08 04:34:41 -07:00
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
mezzo = callPackage ../development/compilers/mezzo { };
|
|
|
|
|
2019-08-07 03:28:49 -07:00
|
|
|
minisat = callPackage ../development/ocaml-modules/minisat { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
|
|
|
|
2016-10-12 03:12:46 -07:00
|
|
|
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };
|
|
|
|
|
2019-08-08 22:34:04 -07:00
|
|
|
mmap = callPackage ../development/ocaml-modules/mmap { };
|
|
|
|
|
2017-02-22 10:21:29 -08:00
|
|
|
mparser = callPackage ../development/ocaml-modules/mparser { };
|
|
|
|
|
2017-07-01 04:50:24 -07:00
|
|
|
mstruct = callPackage ../development/ocaml-modules/mstruct { };
|
|
|
|
|
2017-01-24 13:09:20 -08:00
|
|
|
mtime = callPackage ../development/ocaml-modules/mtime { };
|
|
|
|
|
2017-11-27 11:08:40 -08:00
|
|
|
nocrypto = callPackage ../development/ocaml-modules/nocrypto { };
|
2016-11-02 19:06:14 -07:00
|
|
|
|
2016-11-02 19:06:14 -07:00
|
|
|
notty = callPackage ../development/ocaml-modules/notty {
|
|
|
|
lwt = ocaml_lwt;
|
|
|
|
};
|
|
|
|
|
2017-11-03 16:45:18 -07:00
|
|
|
num = if lib.versionOlder "4.06" ocaml.version
|
|
|
|
then callPackage ../development/ocaml-modules/num {}
|
|
|
|
else null;
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
comparelib = callPackage ../development/ocaml-modules/comparelib { };
|
|
|
|
|
|
|
|
core_extended_p4 = callPackage ../development/ocaml-modules/core_extended { };
|
|
|
|
|
|
|
|
core_kernel_p4 = callPackage ../development/ocaml-modules/core_kernel { };
|
|
|
|
|
|
|
|
core_p4 = callPackage ../development/ocaml-modules/core { };
|
|
|
|
|
|
|
|
ocamlbuild =
|
2016-10-05 00:32:30 -07:00
|
|
|
if lib.versionOlder "4.03" ocaml.version then
|
2016-09-19 10:00:42 -07:00
|
|
|
callPackage ../development/tools/ocaml/ocamlbuild { }
|
|
|
|
else
|
|
|
|
null;
|
|
|
|
|
|
|
|
ocaml_cryptgps = callPackage ../development/ocaml-modules/cryptgps { };
|
|
|
|
|
|
|
|
ocaml_data_notation = callPackage ../development/ocaml-modules/odn { };
|
|
|
|
|
2017-11-01 16:32:41 -07:00
|
|
|
ocaml_expat =
|
|
|
|
if lib.versionAtLeast ocaml.version "4.02"
|
|
|
|
then callPackage ../development/ocaml-modules/expat { }
|
|
|
|
else callPackage ../development/ocaml-modules/expat/0.9.nix { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
|
|
|
frontc = callPackage ../development/ocaml-modules/frontc { };
|
|
|
|
|
|
|
|
ocamlfuse = callPackage ../development/ocaml-modules/ocamlfuse { };
|
|
|
|
|
2017-02-04 07:07:45 -08:00
|
|
|
ocaml_gettext = callPackage ../development/ocaml-modules/ocaml-gettext { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ocamlgraph = callPackage ../development/ocaml-modules/ocamlgraph { };
|
|
|
|
|
|
|
|
ocaml_http = callPackage ../development/ocaml-modules/http { };
|
|
|
|
|
2017-02-04 07:07:45 -08:00
|
|
|
ocaml_libvirt = callPackage ../development/ocaml-modules/ocaml-libvirt { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ocamlify = callPackage ../development/tools/ocaml/ocamlify { };
|
|
|
|
|
2017-03-11 23:29:54 -08:00
|
|
|
ocaml-migrate-parsetree = callPackage ../development/ocaml-modules/ocaml-migrate-parsetree { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ocamlmod = callPackage ../development/tools/ocaml/ocamlmod { };
|
|
|
|
|
2019-10-05 00:36:46 -07:00
|
|
|
ocaml-monadic = callPackage ../development/ocaml-modules/ocaml-monadic { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ocaml_mysql = callPackage ../development/ocaml-modules/mysql { };
|
|
|
|
|
|
|
|
ocamlnet = callPackage ../development/ocaml-modules/ocamlnet { };
|
|
|
|
|
|
|
|
ocaml_oasis = callPackage ../development/tools/ocaml/oasis { };
|
|
|
|
|
|
|
|
ocaml_optcomp = callPackage ../development/ocaml-modules/optcomp { };
|
|
|
|
|
|
|
|
ocaml_pcre = callPackage ../development/ocaml-modules/pcre {};
|
|
|
|
|
|
|
|
pgocaml = callPackage ../development/ocaml-modules/pgocaml {};
|
|
|
|
|
2019-08-07 09:48:33 -07:00
|
|
|
ocaml-sat-solvers = callPackage ../development/ocaml-modules/ocaml-sat-solvers { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ocamlscript = callPackage ../development/tools/ocaml/ocamlscript { };
|
|
|
|
|
|
|
|
ocamlsdl= callPackage ../development/ocaml-modules/ocamlsdl { };
|
|
|
|
|
|
|
|
ocaml_sqlite3 = callPackage ../development/ocaml-modules/sqlite3 { };
|
|
|
|
|
2019-03-13 07:23:19 -07:00
|
|
|
syslog = callPackage ../development/ocaml-modules/syslog { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ocaml_text = callPackage ../development/ocaml-modules/ocaml-text { };
|
|
|
|
|
2017-03-23 00:40:21 -07:00
|
|
|
ocf = callPackage ../development/ocaml-modules/ocf { };
|
|
|
|
|
2018-06-25 22:19:44 -07:00
|
|
|
ocp-build = callPackage ../development/tools/ocaml/ocp-build { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2018-06-25 22:28:05 -07:00
|
|
|
ocp-indent = callPackage ../development/tools/ocaml/ocp-indent { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2018-06-25 22:58:53 -07:00
|
|
|
ocp-index = callPackage ../development/tools/ocaml/ocp-index { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-06-30 15:23:21 -07:00
|
|
|
ocp-ocamlres = callPackage ../development/ocaml-modules/ocp-ocamlres { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ocplib-endian = callPackage ../development/ocaml-modules/ocplib-endian { };
|
2017-06-30 12:51:28 -07:00
|
|
|
|
|
|
|
ocplib-json-typed = callPackage ../development/ocaml-modules/ocplib-json-typed { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2019-08-26 12:30:03 -07:00
|
|
|
ocplib-json-typed-browser = callPackage ../development/ocaml-modules/ocplib-json-typed/browser.nix { };
|
|
|
|
|
|
|
|
ocplib-json-typed-bson = callPackage ../development/ocaml-modules/ocplib-json-typed/bson.nix { };
|
|
|
|
|
2016-11-22 12:07:09 -08:00
|
|
|
ocplib-simplex = callPackage ../development/ocaml-modules/ocplib-simplex { };
|
|
|
|
|
2019-01-14 14:51:56 -08:00
|
|
|
ocsigen_server = callPackage ../development/ocaml-modules/ocsigen-server { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-03-04 05:44:15 -08:00
|
|
|
ocsigen-start = callPackage ../development/ocaml-modules/ocsigen-start { };
|
|
|
|
|
2017-03-04 05:32:19 -08:00
|
|
|
ocsigen-toolkit = callPackage ../development/ocaml-modules/ocsigen-toolkit { };
|
|
|
|
|
2017-05-09 23:35:58 -07:00
|
|
|
octavius = callPackage ../development/ocaml-modules/octavius { };
|
|
|
|
|
2018-09-15 21:43:10 -07:00
|
|
|
odoc = callPackage ../development/ocaml-modules/odoc { };
|
|
|
|
|
2017-01-17 11:37:20 -08:00
|
|
|
omd = callPackage ../development/ocaml-modules/omd { };
|
|
|
|
|
2018-05-28 14:33:00 -07:00
|
|
|
opam-file-format = callPackage ../development/ocaml-modules/opam-file-format { };
|
|
|
|
|
2019-06-01 18:37:44 -07:00
|
|
|
opium = callPackage ../development/ocaml-modules/opium { };
|
|
|
|
|
|
|
|
opium_kernel = callPackage ../development/ocaml-modules/opium_kernel { };
|
|
|
|
|
2018-11-25 08:49:24 -08:00
|
|
|
opti = callPackage ../development/ocaml-modules/opti { };
|
|
|
|
|
2018-11-03 23:49:27 -07:00
|
|
|
optint = callPackage ../development/ocaml-modules/optint { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
otfm = callPackage ../development/ocaml-modules/otfm { };
|
|
|
|
|
2016-11-03 02:39:14 -07:00
|
|
|
otr = callPackage ../development/ocaml-modules/otr { };
|
|
|
|
|
2017-01-10 10:32:58 -08:00
|
|
|
owee = callPackage ../development/ocaml-modules/owee { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ounit = callPackage ../development/ocaml-modules/ounit { };
|
|
|
|
|
2019-08-07 10:36:43 -07:00
|
|
|
pgsolver = callPackage ../development/ocaml-modules/pgsolver { };
|
|
|
|
|
2019-04-06 06:17:37 -07:00
|
|
|
piqi = callPackage ../development/ocaml-modules/piqi {
|
|
|
|
base64 = base64_2;
|
|
|
|
};
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
piqi-ocaml = callPackage ../development/ocaml-modules/piqi-ocaml { };
|
|
|
|
|
2018-12-17 13:39:33 -08:00
|
|
|
ppxfind = callPackage ../development/ocaml-modules/ppxfind { };
|
|
|
|
|
2018-07-05 12:40:30 -07:00
|
|
|
ppxlib = callPackage ../development/ocaml-modules/ppxlib { };
|
|
|
|
|
2018-06-25 06:36:06 -07:00
|
|
|
psmt2-frontend = callPackage ../development/ocaml-modules/psmt2-frontend { };
|
|
|
|
|
2017-12-05 10:10:30 -08:00
|
|
|
psq = callPackage ../development/ocaml-modules/psq { };
|
|
|
|
|
2016-11-02 06:35:40 -07:00
|
|
|
ptime = callPackage ../development/ocaml-modules/ptime { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
re2_p4 = callPackage ../development/ocaml-modules/re2 { };
|
|
|
|
|
2019-01-04 09:50:22 -08:00
|
|
|
resource-pooling = callPackage ../development/ocaml-modules/resource-pooling { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
result = callPackage ../development/ocaml-modules/ocaml-result { };
|
|
|
|
|
2019-08-02 08:34:38 -07:00
|
|
|
secp256k1 = callPackage ../development/ocaml-modules/secp256k1 {
|
|
|
|
inherit (pkgs) secp256k1;
|
|
|
|
};
|
|
|
|
|
2018-09-05 10:12:13 -07:00
|
|
|
seq = callPackage ../development/ocaml-modules/seq { };
|
|
|
|
|
2017-02-23 22:47:05 -08:00
|
|
|
spacetime_lib = callPackage ../development/ocaml-modules/spacetime_lib { };
|
2017-01-24 13:18:33 -08:00
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
sqlexpr = callPackage ../development/ocaml-modules/sqlexpr { };
|
|
|
|
|
|
|
|
tuntap = callPackage ../development/ocaml-modules/tuntap { };
|
|
|
|
|
|
|
|
tyxml = callPackage ../development/ocaml-modules/tyxml { };
|
|
|
|
|
|
|
|
ulex = callPackage ../development/ocaml-modules/ulex { };
|
|
|
|
|
|
|
|
textutils_p4 = callPackage ../development/ocaml-modules/textutils { };
|
|
|
|
|
2016-11-02 17:23:53 -07:00
|
|
|
tls = callPackage ../development/ocaml-modules/tls {
|
|
|
|
lwt = ocaml_lwt;
|
|
|
|
};
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
type_conv_108_08_00 = callPackage ../development/ocaml-modules/type_conv/108.08.00.nix { };
|
|
|
|
type_conv_109_60_01 = callPackage ../development/ocaml-modules/type_conv/109.60.01.nix { };
|
|
|
|
type_conv_112_01_01 = callPackage ../development/ocaml-modules/type_conv/112.01.01.nix { };
|
|
|
|
type_conv =
|
2016-10-05 00:32:30 -07:00
|
|
|
if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then type_conv_112_01_01
|
2016-10-05 00:32:30 -07:00
|
|
|
else if lib.versionOlder "4.00" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then type_conv_109_60_01
|
2016-10-05 00:32:30 -07:00
|
|
|
else if lib.versionOlder "3.12" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then type_conv_108_08_00
|
|
|
|
else null;
|
|
|
|
|
|
|
|
sexplib_108_08_00 = callPackage ../development/ocaml-modules/sexplib/108.08.00.nix { };
|
|
|
|
sexplib_111_25_00 = callPackage ../development/ocaml-modules/sexplib/111.25.00.nix { };
|
|
|
|
sexplib_112_24_01 = callPackage ../development/ocaml-modules/sexplib/112.24.01.nix { };
|
|
|
|
|
|
|
|
sexplib_p4 =
|
2016-10-05 00:32:30 -07:00
|
|
|
if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then sexplib_112_24_01
|
2016-10-05 00:32:30 -07:00
|
|
|
else if lib.versionOlder "4.00" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then sexplib_111_25_00
|
2016-10-05 00:32:30 -07:00
|
|
|
else if lib.versionOlder "3.12" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then sexplib_108_08_00
|
|
|
|
else null;
|
|
|
|
|
2019-09-19 22:53:30 -07:00
|
|
|
ocaml-protoc = callPackage ../development/ocaml-modules/ocaml-protoc { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ocaml_extlib = callPackage ../development/ocaml-modules/extlib { };
|
|
|
|
|
2016-12-04 03:13:32 -08:00
|
|
|
ocb-stubblr = callPackage ../development/ocaml-modules/ocb-stubblr { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ocurl = callPackage ../development/ocaml-modules/ocurl { };
|
|
|
|
|
|
|
|
pa_ounit = callPackage ../development/ocaml-modules/pa_ounit { };
|
|
|
|
|
|
|
|
pa_bench = callPackage ../development/ocaml-modules/pa_bench { };
|
|
|
|
|
|
|
|
pa_test = callPackage ../development/ocaml-modules/pa_test { };
|
|
|
|
|
|
|
|
pipebang = callPackage ../development/ocaml-modules/pipebang { };
|
|
|
|
|
|
|
|
pprint = callPackage ../development/ocaml-modules/pprint { };
|
|
|
|
|
|
|
|
ppx_blob =
|
2016-10-05 00:32:30 -07:00
|
|
|
if lib.versionAtLeast ocaml.version "4.02"
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/ppx_blob {}
|
|
|
|
else null;
|
|
|
|
|
2017-11-27 11:08:40 -08:00
|
|
|
ppx_cstruct = callPackage ../development/ocaml-modules/cstruct/ppx.nix {};
|
|
|
|
|
2017-08-23 10:17:59 -07:00
|
|
|
ppx_derivers = callPackage ../development/ocaml-modules/ppx_derivers {};
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ppx_deriving =
|
2016-10-05 00:32:30 -07:00
|
|
|
if lib.versionAtLeast ocaml.version "4.02"
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/ppx_deriving {}
|
|
|
|
else null;
|
|
|
|
|
2019-09-13 05:45:47 -07:00
|
|
|
ppx_deriving_protobuf = callPackage ../development/ocaml-modules/ppx_deriving_protobuf {};
|
|
|
|
|
2019-09-17 23:42:41 -07:00
|
|
|
ppx_deriving_rpc = callPackage ../development/ocaml-modules/ppx_deriving_rpc {};
|
|
|
|
|
2017-03-18 05:58:49 -07:00
|
|
|
ppx_deriving_yojson = callPackage ../development/ocaml-modules/ppx_deriving_yojson {};
|
|
|
|
|
2018-07-23 05:55:11 -07:00
|
|
|
ppx_gen_rec = callPackage ../development/ocaml-modules/ppx_gen_rec {};
|
|
|
|
|
2016-11-03 09:34:36 -07:00
|
|
|
ppx_import = callPackage ../development/ocaml-modules/ppx_import {};
|
|
|
|
|
2018-07-22 23:38:24 -07:00
|
|
|
ppx_sqlexpr = callPackage ../development/ocaml-modules/sqlexpr/ppx.nix {};
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ppx_tools =
|
2016-10-05 00:32:30 -07:00
|
|
|
if lib.versionAtLeast ocaml.version "4.02"
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/ppx_tools {}
|
|
|
|
else null;
|
|
|
|
|
2017-04-08 04:34:41 -07:00
|
|
|
ppx_tools_versioned = callPackage ../development/ocaml-modules/ppx_tools_versioned { };
|
|
|
|
|
2019-06-18 11:24:25 -07:00
|
|
|
printbox = callPackage ../development/ocaml-modules/printbox { };
|
|
|
|
|
2017-08-03 11:38:06 -07:00
|
|
|
process = callPackage ../development/ocaml-modules/process { };
|
|
|
|
|
2017-07-04 14:39:37 -07:00
|
|
|
ptmap = callPackage ../development/ocaml-modules/ptmap { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
pycaml = callPackage ../development/ocaml-modules/pycaml { };
|
|
|
|
|
2017-06-28 11:13:22 -07:00
|
|
|
qcheck = callPackage ../development/ocaml-modules/qcheck { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
|
|
|
qtest = callPackage ../development/ocaml-modules/qtest { };
|
|
|
|
|
|
|
|
re = callPackage ../development/ocaml-modules/re { };
|
|
|
|
|
2017-10-04 22:57:03 -07:00
|
|
|
react = callPackage ../development/ocaml-modules/react { };
|
|
|
|
|
|
|
|
reactivedata = callPackage ../development/ocaml-modules/reactivedata {};
|
|
|
|
|
2017-04-08 04:34:41 -07:00
|
|
|
reason = callPackage ../development/compilers/reason { };
|
|
|
|
|
2017-07-04 14:39:37 -07:00
|
|
|
rope = callPackage ../development/ocaml-modules/rope { };
|
|
|
|
|
2019-09-09 02:07:43 -07:00
|
|
|
rpclib = callPackage ../development/ocaml-modules/rpclib { };
|
|
|
|
|
2017-03-15 13:04:40 -07:00
|
|
|
rresult = callPackage ../development/ocaml-modules/rresult { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
safepass = callPackage ../development/ocaml-modules/safepass { };
|
|
|
|
|
2016-11-04 11:06:45 -07:00
|
|
|
sedlex = callPackage ../development/ocaml-modules/sedlex { };
|
|
|
|
|
2019-11-18 13:00:36 -08:00
|
|
|
sodium = callPackage ../development/ocaml-modules/sodium { };
|
|
|
|
|
2019-10-09 23:23:46 -07:00
|
|
|
spelll = callPackage ../development/ocaml-modules/spelll { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
sqlite3EZ = callPackage ../development/ocaml-modules/sqlite3EZ { };
|
|
|
|
|
2017-10-05 10:09:50 -07:00
|
|
|
ssl = callPackage ../development/ocaml-modules/ssl { };
|
|
|
|
|
2019-02-23 07:11:26 -08:00
|
|
|
stdlib-shims = callPackage ../development/ocaml-modules/stdlib-shims { };
|
|
|
|
|
2018-07-29 06:32:10 -07:00
|
|
|
stog = callPackage ../applications/misc/stog { };
|
2017-03-23 01:02:21 -07:00
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
stringext = callPackage ../development/ocaml-modules/stringext { };
|
|
|
|
|
2019-08-04 09:16:16 -07:00
|
|
|
tcslib = callPackage ../development/ocaml-modules/tcslib { };
|
|
|
|
|
2019-07-23 12:26:54 -07:00
|
|
|
toml = callPackage ../development/ocaml-modules/toml { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
topkg = callPackage ../development/ocaml-modules/topkg { };
|
|
|
|
|
|
|
|
tsdl = callPackage ../development/ocaml-modules/tsdl { };
|
|
|
|
|
|
|
|
twt = callPackage ../development/ocaml-modules/twt { };
|
|
|
|
|
|
|
|
typerep_p4 = callPackage ../development/ocaml-modules/typerep { };
|
|
|
|
|
2016-10-19 10:20:32 -07:00
|
|
|
uchar = callPackage ../development/ocaml-modules/uchar { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
utop = callPackage ../development/tools/ocaml/utop { };
|
|
|
|
|
|
|
|
uuidm = callPackage ../development/ocaml-modules/uuidm { };
|
|
|
|
|
|
|
|
sawja = callPackage ../development/ocaml-modules/sawja { };
|
|
|
|
|
2017-10-02 03:18:35 -07:00
|
|
|
stdint = callPackage ../development/ocaml-modules/stdint { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
uucd = callPackage ../development/ocaml-modules/uucd { };
|
|
|
|
uucp = callPackage ../development/ocaml-modules/uucp { };
|
|
|
|
uunf = callPackage ../development/ocaml-modules/uunf { };
|
|
|
|
|
2018-01-10 23:57:57 -08:00
|
|
|
uri =
|
|
|
|
if lib.versionAtLeast ocaml.version "4.3"
|
|
|
|
then callPackage ../development/ocaml-modules/uri { }
|
|
|
|
else callPackage ../development/ocaml-modules/uri/legacy.nix { };
|
|
|
|
|
2019-08-21 14:12:37 -07:00
|
|
|
uri-sexp = callPackage ../development/ocaml-modules/uri/sexp.nix { };
|
|
|
|
|
2018-01-10 23:57:57 -08:00
|
|
|
uri_p4 = callPackage ../development/ocaml-modules/uri/legacy.nix {
|
2017-02-19 02:57:24 -08:00
|
|
|
legacyVersion = true;
|
|
|
|
};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
|
|
|
uuseg = callPackage ../development/ocaml-modules/uuseg { };
|
|
|
|
uutf = callPackage ../development/ocaml-modules/uutf { };
|
|
|
|
|
|
|
|
variantslib_p4 = callPackage ../development/ocaml-modules/variantslib { };
|
|
|
|
|
|
|
|
vg = callPackage ../development/ocaml-modules/vg { };
|
|
|
|
|
2018-11-05 22:56:54 -08:00
|
|
|
visitors = callPackage ../development/ocaml-modules/visitors { };
|
|
|
|
|
2017-08-03 11:40:07 -07:00
|
|
|
wasm = callPackage ../development/ocaml-modules/wasm { };
|
|
|
|
|
2018-01-01 01:43:46 -08:00
|
|
|
wtf8 = callPackage ../development/ocaml-modules/wtf8 { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
x509 = callPackage ../development/ocaml-modules/x509 { };
|
|
|
|
|
|
|
|
xmlm = callPackage ../development/ocaml-modules/xmlm { };
|
|
|
|
|
|
|
|
xml-light = callPackage ../development/ocaml-modules/xml-light { };
|
|
|
|
|
2017-03-23 00:56:01 -07:00
|
|
|
xtmpl = callPackage ../development/ocaml-modules/xtmpl { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
yojson = callPackage ../development/ocaml-modules/yojson { };
|
|
|
|
|
|
|
|
zarith = callPackage ../development/ocaml-modules/zarith { };
|
|
|
|
|
|
|
|
zed = callPackage ../development/ocaml-modules/zed { };
|
|
|
|
|
2018-10-16 12:38:57 -07:00
|
|
|
zmq = callPackage ../development/ocaml-modules/zmq { };
|
|
|
|
|
|
|
|
zmq-lwt = callPackage ../development/ocaml-modules/zmq/lwt.nix { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
ocsigen_deriving = callPackage ../development/ocaml-modules/ocsigen-deriving {
|
|
|
|
oasis = ocaml_oasis;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Jane Street
|
2017-05-10 02:20:47 -07:00
|
|
|
|
2019-10-03 22:46:59 -07:00
|
|
|
janePackage =
|
|
|
|
if lib.versionOlder "4.07" ocaml.version
|
|
|
|
then callPackage ../development/ocaml-modules/janestreet/janePackage_0_12.nix {}
|
|
|
|
else callPackage ../development/ocaml-modules/janestreet/janePackage.nix {};
|
2018-07-20 17:44:44 -07:00
|
|
|
|
2019-09-03 12:35:45 -07:00
|
|
|
janeStreet =
|
|
|
|
if lib.versionOlder "4.07" ocaml.version
|
|
|
|
then import ../development/ocaml-modules/janestreet/0.12.nix {
|
2019-10-03 22:46:59 -07:00
|
|
|
inherit ctypes janePackage num octavius ppxlib re;
|
2019-09-03 12:35:45 -07:00
|
|
|
inherit (pkgs) openssl;
|
|
|
|
}
|
|
|
|
else import ../development/ocaml-modules/janestreet {
|
2018-07-20 17:44:44 -07:00
|
|
|
inherit janePackage ocamlbuild angstrom ctypes cryptokit;
|
2018-02-23 18:42:35 -08:00
|
|
|
inherit magic-mime num ocaml-migrate-parsetree octavius ounit;
|
2019-06-16 12:59:06 -07:00
|
|
|
inherit ppx_deriving re ppxlib;
|
|
|
|
inherit (pkgs) openssl;
|
2017-05-10 02:20:47 -07:00
|
|
|
};
|
2018-07-20 17:44:44 -07:00
|
|
|
|
2018-03-06 06:26:12 -08:00
|
|
|
janeStreet_0_9_0 = import ../development/ocaml-modules/janestreet/old.nix {
|
|
|
|
janePackage = callPackage ../development/ocaml-modules/janestreet/janePackage.nix { defaultVersion = "0.9.0"; };
|
|
|
|
inherit lib ocaml ocamlbuild ctypes cryptokit;
|
|
|
|
inherit magic-mime num ocaml-migrate-parsetree octavius ounit;
|
|
|
|
inherit ppx_deriving re zarith;
|
|
|
|
inherit (pkgs) stdenv openssl;
|
|
|
|
};
|
2017-05-10 02:20:47 -07:00
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
js_build_tools = callPackage ../development/ocaml-modules/janestreet/js-build-tools.nix {};
|
|
|
|
|
|
|
|
buildOcamlJane = callPackage ../development/ocaml-modules/janestreet/buildOcamlJane.nix {};
|
|
|
|
|
2017-02-23 10:27:37 -08:00
|
|
|
ppx_core =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_core
|
2017-02-23 10:27:37 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-core.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-23 10:34:17 -08:00
|
|
|
ppx_optcomp =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_optcomp
|
2017-02-23 10:34:17 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-optcomp.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-05-22 04:37:01 -07:00
|
|
|
ppx_driver =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.ppx_driver
|
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-driver.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-23 11:04:01 -08:00
|
|
|
ppx_type_conv =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_type_conv
|
2017-02-23 11:04:01 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-type-conv.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-25 13:31:14 -08:00
|
|
|
ppx_compare =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_compare
|
2017-02-25 13:31:14 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-compare.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-05-22 04:37:01 -07:00
|
|
|
ppx_here =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.ppx_here
|
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-here.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-23 11:07:38 -08:00
|
|
|
ppx_sexp_conv =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_sexp_conv
|
2017-02-23 11:07:38 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-sexp-conv.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-05-22 04:37:01 -07:00
|
|
|
ppx_assert =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.ppx_assert
|
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-assert.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 03:07:24 -08:00
|
|
|
ppx_inline_test =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_inline_test
|
2017-02-26 03:07:24 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-inline-test.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 03:55:52 -08:00
|
|
|
ppx_bench =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_bench
|
2017-02-26 03:55:52 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-bench.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 08:03:43 -08:00
|
|
|
ppx_bin_prot =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_bin_prot
|
2017-02-26 08:03:43 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-bin-prot.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 04:12:58 -08:00
|
|
|
ppx_custom_printf =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_custom_printf
|
2017-02-26 04:12:58 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-custom-printf.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 04:48:16 -08:00
|
|
|
ppx_enumerate =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_enumerate
|
2017-02-26 04:48:16 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-enumerate.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 06:10:02 -08:00
|
|
|
ppx_fail =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_fail
|
2017-02-26 06:10:02 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-fail.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 05:05:04 -08:00
|
|
|
ppx_fields_conv =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_fields_conv
|
2017-02-26 05:05:04 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-fields-conv.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 06:18:59 -08:00
|
|
|
ppx_let =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_let
|
2017-02-26 06:18:59 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-let.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 07:02:35 -08:00
|
|
|
ppx_pipebang =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_pipebang
|
2017-02-26 07:02:35 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-pipebang.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 07:15:01 -08:00
|
|
|
ppx_sexp_message =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_sexp_message
|
2017-02-26 07:15:01 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-sexp-message.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 07:29:29 -08:00
|
|
|
ppx_sexp_value =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_sexp_value
|
2017-02-26 07:29:29 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-sexp-value.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 07:55:06 -08:00
|
|
|
ppx_typerep_conv =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_typerep_conv
|
2017-02-26 07:55:06 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-typerep-conv.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 05:16:03 -08:00
|
|
|
ppx_variants_conv =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_variants_conv
|
2017-02-26 05:16:03 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-variants-conv.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 05:43:30 -08:00
|
|
|
ppx_expect =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_expect
|
2017-02-26 05:43:30 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-expect.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2017-02-26 08:43:23 -08:00
|
|
|
ppx_jane =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.ppx_jane
|
2017-02-26 08:43:23 -08:00
|
|
|
else callPackage ../development/ocaml-modules/janestreet/ppx-jane.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
|
|
|
|
|
|
|
# Core sublibs
|
|
|
|
typerep =
|
2017-05-22 04:37:01 -07:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.typerep
|
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/typerep.nix {}
|
|
|
|
else typerep_p4;
|
|
|
|
|
|
|
|
fieldslib =
|
2017-05-22 04:37:01 -07:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.fieldslib
|
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/fieldslib.nix {}
|
|
|
|
else fieldslib_p4;
|
|
|
|
|
|
|
|
sexplib =
|
2017-02-23 10:21:42 -08:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.sexplib
|
2017-02-23 10:21:42 -08:00
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/sexplib.nix {}
|
|
|
|
else sexplib_p4;
|
|
|
|
|
|
|
|
variantslib =
|
2017-05-22 04:37:01 -07:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.variantslib
|
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/variantslib.nix {}
|
|
|
|
else variantslib_p4;
|
|
|
|
|
|
|
|
bin_prot =
|
2017-05-22 04:37:01 -07:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.bin_prot
|
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/bin_prot.nix {}
|
|
|
|
else bin_prot_p4;
|
|
|
|
|
2017-05-22 07:48:29 -07:00
|
|
|
core_bench =
|
2017-06-25 22:57:17 -07:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.core_bench else
|
2017-05-22 07:48:29 -07:00
|
|
|
callPackage ../development/ocaml-modules/janestreet/core_bench.nix {};
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
core_kernel =
|
2017-02-26 09:29:01 -08:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.core_kernel
|
2017-02-26 09:29:01 -08:00
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/core_kernel.nix {}
|
|
|
|
else core_kernel_p4;
|
|
|
|
|
|
|
|
core =
|
2017-02-26 09:42:02 -08:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.core
|
2017-02-26 09:42:02 -08:00
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/core.nix {}
|
|
|
|
else core_p4;
|
|
|
|
|
|
|
|
re2 =
|
2017-05-22 04:37:01 -07:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.re2
|
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/re2.nix {}
|
|
|
|
else re2_p4;
|
|
|
|
|
|
|
|
textutils =
|
2017-05-22 04:37:01 -07:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.textutils
|
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/textutils.nix {}
|
|
|
|
else textutils_p4;
|
|
|
|
|
|
|
|
core_extended =
|
2017-05-22 04:37:01 -07:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.core_extended
|
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/core-extended.nix {}
|
|
|
|
else core_extended_p4;
|
|
|
|
|
|
|
|
async_kernel =
|
2017-03-03 14:02:12 -08:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.async_kernel
|
2017-03-03 14:02:12 -08:00
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/async-kernel.nix {}
|
|
|
|
else async_kernel_p4;
|
|
|
|
|
2017-05-22 04:37:01 -07:00
|
|
|
async_rpc_kernel =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.async_rpc_kernel
|
|
|
|
else callPackage ../development/ocaml-modules/janestreet/async-rpc-kernel.nix {};
|
2016-09-19 10:00:42 -07:00
|
|
|
|
|
|
|
async_unix =
|
2017-03-03 20:59:22 -08:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
2017-05-22 04:37:01 -07:00
|
|
|
then janeStreet.async_unix
|
2017-03-03 20:59:22 -08:00
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/async-unix.nix {}
|
|
|
|
else async_unix_p4;
|
|
|
|
|
|
|
|
async_extra =
|
2017-05-22 04:37:01 -07:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.async_extra
|
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/async-extra.nix {}
|
|
|
|
else async_extra_p4;
|
|
|
|
|
|
|
|
async =
|
2017-05-22 04:37:01 -07:00
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.async
|
|
|
|
else if lib.versionOlder "4.02" ocaml.version
|
2016-09-19 10:00:42 -07:00
|
|
|
then callPackage ../development/ocaml-modules/janestreet/async.nix {}
|
|
|
|
else async_p4;
|
|
|
|
|
2017-05-22 04:37:01 -07:00
|
|
|
async_ssl =
|
|
|
|
if lib.versionOlder "4.03" ocaml.version
|
|
|
|
then janeStreet.async_ssl
|
|
|
|
else callPackage ../development/ocaml-modules/janestreet/async_ssl.nix { };
|
2017-03-24 16:34:02 -07:00
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
# Apps / from all-packages
|
|
|
|
|
|
|
|
ocamlnat = callPackage ../development/ocaml-modules/ocamlnat { };
|
|
|
|
|
|
|
|
trv = callPackage ../development/tools/misc/trv { };
|
|
|
|
|
2016-12-18 01:25:03 -08:00
|
|
|
omake_rc1 = callPackage ../development/tools/ocaml/omake/0.9.8.6-rc1.nix { };
|
|
|
|
|
2016-09-19 10:00:42 -07:00
|
|
|
google-drive-ocamlfuse = callPackage ../applications/networking/google-drive-ocamlfuse { };
|
|
|
|
|
|
|
|
unison = callPackage ../applications/networking/sync/unison {
|
|
|
|
enableX11 = config.unison.enableX11 or true;
|
|
|
|
};
|
|
|
|
|
2019-03-30 08:29:33 -07:00
|
|
|
hol_light = callPackage ../applications/science/logic/hol_light { };
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2019-01-03 14:58:36 -08:00
|
|
|
})).overrideScope' liftJaneStreet;
|
2016-10-16 11:10:05 -07:00
|
|
|
|
2019-01-03 14:58:36 -08:00
|
|
|
in let inherit (pkgs) callPackage; in rec
|
|
|
|
{
|
2016-10-16 11:10:05 -07:00
|
|
|
|
2019-01-03 14:58:36 -08:00
|
|
|
ocamlPackages_4_00_1 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.00.1.nix { });
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2019-01-03 14:58:36 -08:00
|
|
|
ocamlPackages_4_01_0 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.01.0.nix { });
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2019-01-03 14:58:36 -08:00
|
|
|
ocamlPackages_4_02 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.02.nix { });
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2019-01-03 14:58:36 -08:00
|
|
|
ocamlPackages_4_03 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.03.nix { });
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2019-01-03 14:58:36 -08:00
|
|
|
ocamlPackages_4_04 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.04.nix { });
|
2016-11-09 04:58:34 -08:00
|
|
|
|
2019-01-03 14:58:36 -08:00
|
|
|
ocamlPackages_4_05 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.05.nix { });
|
2017-07-13 10:57:55 -07:00
|
|
|
|
2019-01-03 14:58:36 -08:00
|
|
|
ocamlPackages_4_06 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.06.nix { });
|
2017-11-03 15:48:50 -07:00
|
|
|
|
2019-01-03 14:58:36 -08:00
|
|
|
ocamlPackages_4_07 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.07.nix { });
|
2018-04-18 05:47:27 -07:00
|
|
|
|
2019-02-11 08:21:46 -08:00
|
|
|
ocamlPackages_4_08 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.08.nix { });
|
|
|
|
|
2019-09-19 08:56:21 -07:00
|
|
|
ocamlPackages_4_09 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.09.nix { });
|
|
|
|
|
|
|
|
ocamlPackages_latest = ocamlPackages_4_09;
|
2016-09-19 10:00:42 -07:00
|
|
|
|
2019-10-03 22:46:59 -07:00
|
|
|
ocamlPackages = ocamlPackages_4_07;
|
2016-09-19 10:00:42 -07:00
|
|
|
}
|