Merge pull request #20151 from Profpatsch/jackline-revert

Revert "Merge pull request #20090 from sternenseemann/master"
This commit is contained in:
Profpatsch 2016-11-04 12:29:57 +01:00 committed by GitHub
commit 7e0ca08bfa
15 changed files with 62 additions and 396 deletions

View File

@ -1,37 +0,0 @@
{stdenv, fetchFromGitHub, ocamlPackages}:
assert stdenv.lib.versionAtLeast ocamlPackages.ocaml.version "4.02.2";
stdenv.mkDerivation rec {
version = "2016-10-30";
name = "jackline-${version}";
src = fetchFromGitHub {
owner = "hannesm";
repo = "jackline";
rev = "8d829b03f2cdad6b13260ad293aeaa44075bd894";
sha256 = "1xsngldyracfb15jxa9h5qnpaywv6bn8gkg0hzccycjz1nfskl17";
};
buildInputs = with ocamlPackages; [
ocaml ocamlbuild findlib topkg ppx_sexp_conv
erm_xmpp_0_3 tls nocrypto x509 ocaml_lwt otr astring
ptime notty sexplib_p4 hex uutf opam
];
buildPhase = with ocamlPackages; ''
ocaml -I ${findlib}/lib/ocaml/${ocaml.version}/site-lib pkg/pkg.ml build \
--pinned true
'';
installPhase = ''
opam-installer --prefix=$out --script | sh
'';
meta = with stdenv.lib; {
homepage = https://github.com/hannesm/jackline;
description = "Terminal-based XMPP client in pure OCaml.";
license = licenses.bsd2;
maintainers = with maintainers; [ sternenseemann ];
};
}

View File

@ -1,43 +0,0 @@
{stdenv, fetchurl, buildOcaml, ocaml, findlib, ocamlbuild, topkg, opam}:
buildOcaml rec {
version = "0.8.3";
name = "astring";
src = fetchurl {
url = "http://erratique.ch/software/astring/releases/astring-${version}.tbz";
sha256 = "0ixjwc3plrljvj24za3l9gy0w30lsbggp8yh02lwrzw61ls4cri0";
};
unpackCmd = "tar -xf $curSrc";
buildInputs = [ ocaml findlib ocamlbuild topkg opam ];
buildPhase = ''
ocaml -I ${findlib}/lib/ocaml/${ocaml.version}/site-lib/ pkg/pkg.ml build
'';
installPhase = ''
opam-installer --script --prefix=$out astring.install | sh
ln -s $out/lib/astring $out/lib/ocaml/${ocaml.version}/site-lib/
'';
meta = {
homepage = http://erratique.ch/software/ptime;
description = "Alternative String module for OCaml.";
longDescription = ''
Astring exposes an alternative String module for OCaml. This module tries
to balance minimality and expressiveness for basic, index-free, string
processing and provides types and functions for substrings, string sets
and string maps.
Remaining compatible with the OCaml String module is a non-goal.
The String module exposed by Astring has exception safe functions, removes
deprecated and rarely used functions, alters some signatures and names,
adds a few missing functions and fully exploits OCaml's newfound string
immutability.
'';
license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
};
}

View File

@ -1,40 +1,20 @@
{stdenv, buildOcaml, fetchFromGitHub, writeText, {stdenv, writeText, fetchurl, ocaml, ocplib-endian, sexplib_p4, findlib,
ocaml, ocplib-endian, sexplib_p4, findlib, ounit, camlp4, async_p4 ? null, lwt ? null, camlp4}:
async_p4 ? null, lwt ? null, ppx_tools ? null,
withAsync ? true, withLwt ? true, withPpx ? true}:
with stdenv.lib; assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";
assert withAsync -> async_p4 != null;
assert withLwt -> lwt != null;
assert withPpx -> ppx_tools != null;
buildOcaml rec { stdenv.mkDerivation {
name = "cstruct"; name = "ocaml-cstruct-1.6.0";
version = "2.3.0";
minimumSupportedOcamlVersion = "4.02"; src = fetchurl {
url = https://github.com/mirage/ocaml-cstruct/archive/v1.6.0.tar.gz;
src = fetchFromGitHub { sha256 = "0f90a1b7a03091cf22a3ccb11a0cce03b6500f064ad3766b5ed81418ac008ece";
owner = "mirage";
repo = "ocaml-cstruct";
rev = "v${version}";
sha256 = "19spsgkry41dhsbm6ij71kws90bqp7wiggc6lsqdl43xxvbgdmys";
}; };
configureFlags = [ "--enable-tests" ] ++ configureFlags = stdenv.lib.strings.concatStringsSep " " ((if lwt != null then ["--enable-lwt"] else []) ++
optional withLwt [ "--enable-lwt" ] ++ (if async_p4 != null then ["--enable-async"] else []));
optional withAsync [ "--enable-async" ] ++ buildInputs = [ocaml findlib camlp4];
optional withPpx ["--enable-ppx"]; propagatedBuildInputs = [ocplib-endian sexplib_p4 lwt async_p4];
configurePhase = "./configure --prefix $out $configureFlags";
buildInputs = [ ocaml findlib camlp4 ounit ];
propagatedBuildInputs = [ocplib-endian sexplib_p4 ] ++
optional withPpx ppx_tools ++
optional withAsync async_p4 ++
optional withLwt lwt;
doCheck = true;
checkTarget = "test";
createFindlibDestdir = true; createFindlibDestdir = true;
dontStrip = true; dontStrip = true;

View File

@ -1,29 +0,0 @@
{ stdenv, buildOcaml, fetchFromGitHub, fetchurl, ocaml, findlib, erm_xml, nocrypto, camlp4 }:
buildOcaml rec {
version = "0.3";
name = "erm_xmpp";
src = fetchFromGitHub {
owner = "hannesm";
repo = "xmpp";
rev = "eee18bd3dd343550169969c0b45548eafd51cfe1";
sha256 = "0hzs528lrx1ayalv6fh555pjn0b4l8xch1f72hd3b07g1xahdas5";
};
buildInputs = [ ocaml findlib camlp4 ];
propagatedBuildInputs = [ erm_xml nocrypto ];
configurePhase = "ocaml setup.ml -configure --prefix $out";
buildPhase = "ocaml setup.ml -build";
installPhase = "ocaml setup.ml -install";
createFindlibDestdir = true;
meta = {
homepage = https://github.com/hannesm/xmpp;
description = "OCaml based XMPP implementation (fork).";
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
};
}

View File

@ -1,10 +1,10 @@
{stdenv, buildOcamlJane, {stdenv, buildOcamlJane,
ppx_core, ppx_tools, ppx_type_conv, sexplib_p4}: ppx_core, ppx_tools, ppx_type_conv, sexplib}:
buildOcamlJane rec { buildOcamlJane rec {
name = "ppx_sexp_conv"; name = "ppx_sexp_conv";
hash = "1kgbmlc11w5jhbhmy5n0f734l44zwyry48342dm5qydi9sfzcgq2"; hash = "1kgbmlc11w5jhbhmy5n0f734l44zwyry48342dm5qydi9sfzcgq2";
propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv sexplib_p4 ]; propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv sexplib];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "PPX syntax extension that generates code for converting OCaml types to and from s-expressions, as defined in the sexplib library"; description = "PPX syntax extension that generates code for converting OCaml types to and from s-expressions, as defined in the sexplib library";

View File

@ -1,30 +1,20 @@
{ stdenv, buildOcaml, fetchFromGitHub, ocaml, findlib, cstruct, type_conv, zarith, ounit, ocaml_oasis, ppx_sexp_conv { stdenv, fetchzip, ocaml, findlib, cstruct, type_conv, zarith, ounit }:
, lwt ? null
, withLwt ? true}:
with stdenv.lib; assert stdenv.lib.versionAtLeast ocaml.version "4.01";
assert withLwt -> lwt != null;
buildOcaml rec { stdenv.mkDerivation rec {
name = "nocrypto"; name = "ocaml-nocrypto-${version}";
version = "0.5.3"; version = "0.5.1";
minimumSupportedOcamlVersion = "4.02"; src = fetchzip {
url = "https://github.com/mirleft/ocaml-nocrypto/archive/${version}.tar.gz";
src = fetchFromGitHub { sha256 = "15gffvixk12ghsfra9amfszd473c8h188zfj03ngvblbdm0d80m0";
owner = "mirleft";
repo = "ocaml-nocrypto";
rev = "v${version}";
sha256 = "0m3yvqpgfffqp15mcl08b78cv8zw25rnp6z1pkj5aimz6xg3gqbl";
}; };
buildInputs = [ ocaml ocaml_oasis findlib type_conv ounit ppx_sexp_conv ]; buildInputs = [ ocaml findlib type_conv ounit ];
propagatedBuildInputs = [ cstruct zarith ] ++ optional withLwt lwt; propagatedBuildInputs = [ cstruct zarith ];
configureFlags = [ "--enable-tests" ] ++ optional withLwt ["--enable-lwt"];
configurePhase = "./configure --prefix $out $configureFlags";
configureFlags = "--enable-tests";
doCheck = true; doCheck = true;
checkTarget = "test"; checkTarget = "test";
createFindlibDestdir = true; createFindlibDestdir = true;
@ -32,6 +22,7 @@ buildOcaml rec {
meta = { meta = {
homepage = https://github.com/mirleft/ocaml-nocrypto; homepage = https://github.com/mirleft/ocaml-nocrypto;
description = "Simplest possible crypto to support TLS"; description = "Simplest possible crypto to support TLS";
platforms = ocaml.meta.platforms or [];
license = stdenv.lib.licenses.bsd2; license = stdenv.lib.licenses.bsd2;
maintainers = with stdenv.lib.maintainers; [ vbgl ]; maintainers = with stdenv.lib.maintainers; [ vbgl ];
}; };

View File

@ -1,36 +0,0 @@
{ stdenv, buildOcaml, fetchFromGitHub, findlib
, result, uucp, uuseg, uutf
, withLwt ? true
, lwt ? null }:
with stdenv.lib;
assert withLwt -> lwt != null;
buildOcaml rec {
version = "0.1.1";
name = "notty";
minimumSupportedOcamlVersion = "4.02";
src = fetchFromGitHub {
owner = "pqwy";
repo = "notty";
rev = "v${version}";
sha256 = "0bw3bq8z2y1rhc20zn13s78sazywyzpg8nmyjch33p7ypxfglf01";
};
buildInputs = [ findlib ];
propagatedBuildInputs = [ result uucp uuseg uutf ] ++
optional withLwt lwt;
configureFlags = [ "--enable-unix" ] ++
optional withLwt ["--enable-lwt"];
configurePhase = "./configure --prefix $out $configureFlags";
meta = with stdenv.lib; {
homepage = https://github.com/pqwy/notty/tree/master;
description = "Declarative terminal graphics for OCaml.";
license = licenses.isc;
maintainers = with maintainers; [ sternenseemann ];
};
}

View File

@ -1,43 +0,0 @@
{stdenv, buildOcaml, fetchFromGitHub, ocamlbuild, findlib, topkg, ocaml, opam,
ppx_tools, ppx_sexp_conv, cstruct, sexplib_p4, result, nocrypto, astring}:
let ocamlFlags = "-I ${findlib}/lib/ocaml/${ocaml.version}/site-lib/"; in
buildOcaml rec {
name = "otr";
version = "0.3.3";
minimumSupportedOcamlVersion = "4.02.2";
src = fetchFromGitHub {
owner = "hannesm";
repo = "ocaml-otr";
rev = "${version}";
sha256 = "07zzix5mfsasqpqdx811m0x04gp8mq1ayf4b64998k98027v01rr";
};
buildInputs = [ ocamlbuild findlib topkg ppx_tools ppx_sexp_conv opam ];
propagatedBuildInputs = [ cstruct sexplib_p4 result nocrypto astring ];
buildPhase = ''
ocaml ${ocamlFlags} pkg/pkg.ml build \
--tests true
'';
installPhase = ''
opam-installer --prefix=$out --script | sh
ln -s $out/lib/otr $out/lib/ocaml/${ocaml.version}/site-lib
'';
doCheck = true;
checkPhase = "ocaml ${ocamlFlags} pkg/pkg.ml test";
createFindlibDestdir = true;
meta = with stdenv.lib; {
homepage = https://github.com/hannesm/ocaml-otr;
description = "Off-the-record (OTR) messaging protocol, purely in OCaml.";
license = licenses.bsd2;
maintainers = with maintainers; [ sternenseemann ];
};
}

View File

@ -1,47 +0,0 @@
{stdenv, fetchurl, buildOcaml, ocaml, findlib, ocamlbuild, topkg, result, opam}:
let ocaml-version = stdenv.lib.getVersion ocaml; in
buildOcaml rec {
version = "0.8.2";
name = "ptime";
src = fetchurl {
url = "http://erratique.ch/software/ptime/releases/ptime-${version}.tbz";
sha256 = "1lihkhzskzwxskiarh4mvf7gbz5nfv25vmazbfz81m344i32a5pj";
};
unpackCmd = "tar -xf $curSrc";
buildInputs = [ ocaml findlib ocamlbuild topkg opam ];
propagatedBuildInputs = [ result ];
buildPhase = ''
ocaml -I ${findlib}/lib/ocaml/${ocaml-version}/site-lib/ pkg/pkg.ml build --with-js_of_ocaml false
'';
installPhase = ''
opam-installer --script --prefix=$out ptime.install | sh
ln -s $out/lib/ptime $out/lib/ocaml/${ocaml.version}/site-lib
'';
meta = {
homepage = http://erratique.ch/software/ptime;
description = "POSIX time for OCaml.";
longDescription = ''
Ptime has platform independent POSIX time support in pure OCaml.
It provides a type to represent a well-defined range of POSIX timestamps
with picosecond precision, conversion with date-time values, conversion
with RFC 3339 timestamps and pretty printing to a human-readable,
locale-independent representation.
The additional Ptime_clock library provides access to a system POSIX clock
and to the system's current time zone offset.
Ptime is not a calendar library.
'';
license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
};
}

View File

@ -1,41 +0,0 @@
{ stdenv, buildOcaml, fetchFromGitHub, findlib, ocamlbuild, ocaml_oasis
, ppx_tools, ppx_sexp_conv, result, x509, nocrypto, cstruct
, withLwt ? true
, lwt ? null}:
with stdenv.lib;
assert withLwt -> lwt != null;
buildOcaml rec {
version = "0.7.1";
name = "tls";
minimunSupportedOcamlVersion = "4.02";
src = fetchFromGitHub {
owner = "mirleft";
repo = "ocaml-tls";
rev = "${version}";
sha256 = "19q2hzxiasz9pzczgb63kikg0mc9mw98dfvch5falf2rincycj24";
};
buildInputs = [ ocamlbuild findlib ocaml_oasis ppx_sexp_conv ];
propagatedBuildInputs = [ cstruct nocrypto result x509 ] ++
optional withLwt lwt;
configureFlags = [ "--disable-mirage" "--enable-tests" ] ++
optional withLwt ["--enable-lwt"];
configurePhase = "./configure --prefix $out $configureFlags";
doCheck = true;
checkTarget = "test";
createFindlibDestdir = true;
meta = with stdenv.lib; {
homepage = https://github.com/mirleft/ocaml-tls;
description = "TLS in pure OCaml.";
license = licenses.bsd2;
maintainers = with maintainers; [ sternenseemann ];
};
}

View File

@ -1,39 +1,40 @@
{ stdenv, buildOcaml, fetchurl, ocaml, findlib, ocamlbuild, opam, uucp, uutf, cmdliner }: { stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, uucp, uutf, cmdliner }:
let let
inherit (stdenv.lib) getVersion versionAtLeast;
pname = "uuseg"; pname = "uuseg";
version = "0.8.0";
webpage = "http://erratique.ch/software/${pname}"; webpage = "http://erratique.ch/software/${pname}";
in in
buildOcaml rec { assert versionAtLeast (getVersion ocaml) "4.01";
minimumSupportedOcamlVersion = "4.01"; stdenv.mkDerivation {
name = pname; name = "ocaml-${pname}-${version}";
version = "0.9.0";
src = fetchurl { src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz"; url = "${webpage}/releases/${pname}-${version}.tbz";
sha256 = "00n4zi8dyw2yzi4nr2agcrr33b0q4dr9mgnkczipf4c0gm5cm50h"; sha256 = "00n4zi8dyw2yzi4nr2agcrr33b0q4dr9mgnkczipf4c0gm5cm50h";
}; };
buildInputs = [ ocaml findlib ocamlbuild opam ]; buildInputs = [ ocaml findlib ocamlbuild opam cmdliner ];
propagatedBuildInputs = [ uucp uutf cmdliner ]; propagatedBuildInputs = [ uucp uutf ];
createFindlibDestdir = true; createFindlibDestdir = true;
unpackCmd = "tar xjf $src"; unpackCmd = "tar xjf $src";
buildPhase = '' buildPhase = ''
ocaml pkg/git.ml
ocaml pkg/build.ml \ ocaml pkg/build.ml \
native=true native-dynlink=true \ native=true native-dynlink=true \
uutf=true cmdliner=true uutf=true cmdliner=true
''; '';
installPhase = '' installPhase = ''
opam-installer --prefix $out --script | sh opam-installer --script --prefix=$out ${pname}.install | sh
ln -s $out/lib/uuseg $out/lib/ocaml/${ocaml.version}/site-lib/ ln -s $out/lib/${pname} $out/lib/ocaml/${getVersion ocaml}/site-lib/${pname}
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {

View File

@ -1,38 +1,32 @@
{ stdenv, buildOcaml, fetchurl, ocaml, findlib, ocamlbuild, opam, cmdliner}: { stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam }:
let let
pname = "uutf"; pname = "uutf";
webpage = "http://erratique.ch/software/${pname}"; webpage = "http://erratique.ch/software/${pname}";
in in
buildOcaml rec { assert stdenv.lib.versionAtLeast ocaml.version "3.12";
name = pname;
version = "0.9.4";
minimumSupportedOcamlVersion = "3.12"; stdenv.mkDerivation rec {
name = "ocaml-${pname}-${version}";
version = "0.9.3";
src = fetchurl { src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz"; url = "${webpage}/releases/${pname}-${version}.tbz";
sha256 = "1f71fyawxal42x6g82539bv0ava2smlar6rmxxz1cyq3l0i6fw0k"; sha256 = "0xvq20knmq25902ijpbk91ax92bkymsqkbfklj1537hpn64lydhz";
}; };
buildInputs = [ ocaml findlib ocamlbuild opam ]; buildInputs = [ ocaml findlib ocamlbuild opam ];
propagatedBuildInputs = [ cmdliner ];
createFindlibDestdir = true; createFindlibDestdir = true;
unpackCmd = "tar xjf $src"; unpackCmd = "tar xjf $src";
buildPhase = '' buildPhase = "./pkg/build true";
ocaml pkg/git.ml
ocaml pkg/build.ml \
native=true \
native-dynlink=true \
cmdliner=true
'';
installPhase = '' installPhase = ''
opam-installer --prefix=$out --script | sh opam-installer --script --prefix=$out ${pname}.install > install.sh
ln -s $out/lib/uutf $out/lib/ocaml/${ocaml.version}/site-lib/ sh install.sh
ln -s $out/lib/${pname} $out/lib/ocaml/${ocaml.version}/site-lib/
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {

View File

@ -1,30 +1,28 @@
{stdenv, buildOcaml, fetchFromGitHub, ocaml, findlib, asn1-combinators, nocrypto, ounit, ocaml_oasis, ppx_sexp_conv}: { stdenv, fetchzip, ocaml, findlib, asn1-combinators, nocrypto, ounit }:
buildOcaml rec { let version = "0.5.0"; in
name = "x509";
version = "0.5.3";
src = fetchFromGitHub { stdenv.mkDerivation {
owner = "mirleft"; name = "ocaml-x509-${version}";
repo = "ocaml-x509";
rev = "${version}"; src = fetchzip {
sha256 = "07cc3z6h87460z3f4vz8nlczw5jkc4vjhix413z9x6nral876rn7"; url = "https://github.com/mirleft/ocaml-x509/archive/${version}.tar.gz";
sha256 = "0i9618ph4i2yk5dvvhiqhm7wf3qmd6b795mxwff8jf856gb2gdyn";
}; };
buildInputs = [ ocaml ocaml_oasis findlib ounit ppx_sexp_conv ]; buildInputs = [ ocaml findlib ounit ];
propagatedBuildInputs = [ asn1-combinators nocrypto ]; propagatedBuildInputs = [ asn1-combinators nocrypto ];
configureFlags = "--enable-tests"; configureFlags = "--enable-tests";
configurePhase = "./configure --prefix $out $configureFlags";
doCheck = true; doCheck = true;
checkTarget = "test"; checkTarget = "test";
createFindlibDestdir = true; createFindlibDestdir = true;
meta = with stdenv.lib; { meta = {
homepage = https://github.com/mirleft/ocaml-x509; homepage = https://github.com/mirleft/ocaml-x509;
description = "X509 (RFC5280) handling in OCaml"; description = "X509 (RFC5280) handling in OCaml";
license = licenses.bsd2; platforms = ocaml.meta.platforms or [];
maintainers = with maintainers; [ vbgl ]; license = stdenv.lib.licenses.bsd2;
maintainers = with stdenv.lib.maintainers; [ vbgl ];
}; };
} }

View File

@ -13257,10 +13257,6 @@ in
hyper = callPackage ../applications/misc/hyper { inherit (gnome2) GConf; }; hyper = callPackage ../applications/misc/hyper { inherit (gnome2) GConf; };
hyperterm = self.hyper; hyperterm = self.hyper;
jackline = callPackage ../applications/networking/instant-messengers/jackline {
ocamlPackages = ocaml-ng.ocamlPackages_4_02;
};
slack = callPackage ../applications/networking/instant-messengers/slack { }; slack = callPackage ../applications/networking/instant-messengers/slack { };
spectrwm = callPackage ../applications/window-managers/spectrwm { }; spectrwm = callPackage ../applications/window-managers/spectrwm { };

View File

@ -22,8 +22,6 @@ let
asn1-combinators = callPackage ../development/ocaml-modules/asn1-combinators { }; asn1-combinators = callPackage ../development/ocaml-modules/asn1-combinators { };
astring = callPackage ../development/ocaml-modules/astring { };
async_extra_p4 = callPackage ../development/ocaml-modules/async_extra { }; async_extra_p4 = callPackage ../development/ocaml-modules/async_extra { };
async_find = callPackage ../development/ocaml-modules/async_find { }; async_find = callPackage ../development/ocaml-modules/async_find { };
@ -158,8 +156,6 @@ let
erm_xmpp = callPackage ../development/ocaml-modules/erm_xmpp { }; erm_xmpp = callPackage ../development/ocaml-modules/erm_xmpp { };
erm_xmpp_0_3 = callPackage ../development/ocaml-modules/erm_xmpp/0.3.nix { };
estring = callPackage ../development/ocaml-modules/estring { }; estring = callPackage ../development/ocaml-modules/estring { };
ezjsonm = callPackage ../development/ocaml-modules/ezjsonm { ezjsonm = callPackage ../development/ocaml-modules/ezjsonm {
@ -261,13 +257,7 @@ let
mlgmp = callPackage ../development/ocaml-modules/mlgmp { }; mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
nocrypto = callPackage ../development/ocaml-modules/nocrypto { nocrypto = callPackage ../development/ocaml-modules/nocrypto { };
lwt = ocaml_lwt;
};
notty = callPackage ../development/ocaml-modules/notty {
lwt = ocaml_lwt;
};
ocaml_batteries = callPackage ../development/ocaml-modules/batteries { }; ocaml_batteries = callPackage ../development/ocaml-modules/batteries { };
@ -345,15 +335,11 @@ let
otfm = callPackage ../development/ocaml-modules/otfm { }; otfm = callPackage ../development/ocaml-modules/otfm { };
otr = callPackage ../development/ocaml-modules/otr { };
ounit = callPackage ../development/ocaml-modules/ounit { }; ounit = callPackage ../development/ocaml-modules/ounit { };
piqi = callPackage ../development/ocaml-modules/piqi { }; piqi = callPackage ../development/ocaml-modules/piqi { };
piqi-ocaml = callPackage ../development/ocaml-modules/piqi-ocaml { }; piqi-ocaml = callPackage ../development/ocaml-modules/piqi-ocaml { };
ptime = callPackage ../development/ocaml-modules/ptime { };
re2_p4 = callPackage ../development/ocaml-modules/re2 { }; re2_p4 = callPackage ../development/ocaml-modules/re2 { };
result = callPackage ../development/ocaml-modules/ocaml-result { }; result = callPackage ../development/ocaml-modules/ocaml-result { };
@ -374,10 +360,6 @@ let
textutils_p4 = callPackage ../development/ocaml-modules/textutils { }; textutils_p4 = callPackage ../development/ocaml-modules/textutils { };
tls = callPackage ../development/ocaml-modules/tls {
lwt = ocaml_lwt;
};
type_conv_108_08_00 = callPackage ../development/ocaml-modules/type_conv/108.08.00.nix { }; 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_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_112_01_01 = callPackage ../development/ocaml-modules/type_conv/112.01.01.nix { };