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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
185 B
Nix
Raw Normal View History

2021-10-26 22:58:39 +00:00
{ buildDunePackage
, gluten
, lwt
}:
buildDunePackage rec {
pname = "gluten-lwt";
2023-01-19 06:51:40 +00:00
inherit (gluten) doCheck meta src version;
2021-10-26 22:58:39 +00:00
propagatedBuildInputs = [
gluten
lwt
];
}