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

15 lines
194 B
Nix
Raw Normal View History

2021-10-27 00:58:39 +02:00
{ buildDunePackage
, gluten
, lwt
}:
buildDunePackage rec {
pname = "gluten-lwt";
inherit (gluten) doCheck meta src useDune2 version;
propagatedBuildInputs = [
gluten
lwt
];
}