mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
28 lines
665 B
Nix
28 lines
665 B
Nix
{ lib, fetchFromGitHub, libev, buildDunePackage
|
|
, cppo, dune-configurator, ocplib-endian
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "lwt";
|
|
version = "5.7.0";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ocsigen";
|
|
repo = "lwt";
|
|
rev = version;
|
|
hash = "sha256-o0wPK6dPdnsr/LzwcSwbIGcL85wkDjdFuEcAxuS/UEs=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|