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.

21 lines
373 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
2023-01-22 06:28:05 +00:00
duneVersion = "3";
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;
nativeCheckInputs = [ cstruct-unix ];
2022-06-25 16:41:04 +00:00
meta = awa.meta // { mainProgram = "awa_lwt_server"; };
2021-01-16 12:24:58 +00:00
}