2019-08-31 00:04:43 -07:00
|
|
|
{ lib, fetchzip, pkgconfig, ncurses, libev, buildDunePackage, ocaml
|
2019-11-13 09:13:05 -08:00
|
|
|
, cppo, ocaml-migrate-parsetree, ocplib-endian, result
|
2019-08-31 00:04:43 -07:00
|
|
|
, mmap, seq
|
2016-11-21 10:20:43 -08:00
|
|
|
}:
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 07:40:04 -08:00
|
|
|
|
2019-08-31 00:04:43 -07:00
|
|
|
let inherit (lib) optional versionAtLeast; in
|
2018-09-28 08:28:36 -07:00
|
|
|
|
2018-11-05 02:21:46 -08:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "lwt";
|
2020-06-28 02:59:56 -07:00
|
|
|
version = "5.3.0";
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 07:40:04 -08:00
|
|
|
|
2015-02-16 02:23:43 -08:00
|
|
|
src = fetchzip {
|
2018-11-05 02:21:46 -08:00
|
|
|
url = "https://github.com/ocsigen/${pname}/archive/${version}.tar.gz";
|
2020-06-28 02:59:56 -07:00
|
|
|
sha256 = "15hgy3220m2b8imipa514n7l65m1h5lc6l1hanqwwvs7ghh2aqp2";
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 07:40:04 -08:00
|
|
|
};
|
|
|
|
|
2018-03-25 11:26:39 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-11-13 09:13:05 -08:00
|
|
|
buildInputs = [ cppo ocaml-migrate-parsetree ]
|
2018-11-05 02:21:46 -08:00
|
|
|
++ optional (!versionAtLeast ocaml.version "4.07") ncurses;
|
2019-11-13 09:13:05 -08:00
|
|
|
propagatedBuildInputs = [ libev mmap ocplib-endian seq result ];
|
2018-03-25 11:26:39 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://ocsigen.org/lwt/";
|
|
|
|
description = "A cooperative threads library for OCaml";
|
2019-08-31 00:04:43 -07:00
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
|
|
license = lib.licenses.mit;
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 07:40:04 -08:00
|
|
|
};
|
|
|
|
}
|