nixpkgs/pkgs/development/ocaml-modules/awa/lwt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
345 B
Nix
Raw Normal View History

2021-01-16 12:24:58 +00:00
{ buildDunePackage, awa
, cstruct, mtime, lwt, cstruct-unix, mirage-crypto-rng
}:
buildDunePackage {
pname = "awa-lwt";
2022-06-25 16:41:04 +00:00
inherit (awa) version src;
2021-01-16 12:24:58 +00:00
propagatedBuildInputs = [
2022-06-25 16:41:04 +00:00
awa cstruct mtime lwt mirage-crypto-rng
2021-01-16 12:24:58 +00:00
];
2022-06-25 16:41:04 +00:00
doCheck = true;
checkInputs = [ cstruct-unix ];
meta = awa.meta // { mainProgram = "awa_lwt_server"; };
2021-01-16 12:24:58 +00:00
}