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

17 lines
207 B
Nix
Raw Normal View History

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