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

16 lines
278 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";
inherit (awa) version src useDune2;
propagatedBuildInputs = [
awa cstruct mtime lwt cstruct-unix mirage-crypto-rng
];
inherit (awa) meta;
}