2021-01-19 06:50:56 +00:00
|
|
|
{ lib, fetchzip, pkg-config, ncurses, libev, buildDunePackage, ocaml
|
2021-02-08 08:04:12 +00:00
|
|
|
, cppo, dune-configurator, ocaml-migrate-parsetree, ocplib-endian, result
|
2019-08-31 08:04:43 +01:00
|
|
|
, mmap, seq
|
2021-02-08 08:04:12 +00:00
|
|
|
, ocaml-syntax-shims
|
2016-11-21 18:20:43 +00: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 15:40:04 +00:00
|
|
|
|
2019-08-31 08:04:43 +01:00
|
|
|
let inherit (lib) optional versionAtLeast; in
|
2018-09-28 16:28:36 +01:00
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "lwt";
|
2021-02-08 08:04:12 +00:00
|
|
|
version = "5.4.0";
|
|
|
|
|
|
|
|
useDune2 = true;
|
* 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 15:40:04 +00:00
|
|
|
|
2015-02-16 10:23:43 +00:00
|
|
|
src = fetchzip {
|
2018-11-05 10:21:46 +00:00
|
|
|
url = "https://github.com/ocsigen/${pname}/archive/${version}.tar.gz";
|
2021-02-08 08:04:12 +00:00
|
|
|
sha256 = "1ay1zgadnw19r9hl2awfjr22n37l7rzxd9v73pjbahavwm2ay65d";
|
* 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 15:40:04 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2021-02-08 08:04:12 +00:00
|
|
|
buildInputs = [ cppo dune-configurator ocaml-migrate-parsetree ]
|
|
|
|
++ optional (!versionAtLeast ocaml.version "4.08") ocaml-syntax-shims
|
2018-11-05 10:21:46 +00:00
|
|
|
++ optional (!versionAtLeast ocaml.version "4.07") ncurses;
|
2019-11-13 17:13:05 +00:00
|
|
|
propagatedBuildInputs = [ libev mmap ocplib-endian seq result ];
|
2018-03-25 19:26:39 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://ocsigen.org/lwt/";
|
|
|
|
description = "A cooperative threads library for OCaml";
|
2019-08-31 08:04:43 +01: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 15:40:04 +00:00
|
|
|
};
|
|
|
|
}
|