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

15 lines
194 B
Nix
Raw Normal View History

{ buildDunePackage
, gluten
, lwt
}:
buildDunePackage rec {
pname = "gluten-lwt";
inherit (gluten) doCheck meta src useDune2 version;
propagatedBuildInputs = [
gluten
lwt
];
}