29 lines
665 B
Nix
29 lines
665 B
Nix
|
{ lib, fetchFromGitHub, libev, buildDunePackage
|
||
|
, cppo, dune-configurator, ocplib-endian
|
||
|
}:
|
||
|
|
||
|
buildDunePackage rec {
|
||
|
pname = "lwt";
|
||
|
version = "5.8.0";
|
||
|
|
||
|
minimalOCamlVersion = "4.08";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "ocsigen";
|
||
|
repo = "lwt";
|
||
|
rev = version;
|
||
|
hash = "sha256-GX5CSJuTajvZJ0TgG95aHeOCBi2B9Aw2URLZRCdp91A=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ cppo ];
|
||
|
buildInputs = [ dune-configurator ];
|
||
|
propagatedBuildInputs = [ libev ocplib-endian ];
|
||
|
|
||
|
meta = {
|
||
|
homepage = "https://ocsigen.org/lwt/";
|
||
|
description = "Cooperative threads library for OCaml";
|
||
|
maintainers = [ lib.maintainers.vbgl ];
|
||
|
license = lib.licenses.mit;
|
||
|
};
|
||
|
}
|