nixpkgs-suyu/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-27 00:58:39 +02:00
{ buildDunePackage
, gluten
, lwt
}:
buildDunePackage rec {
pname = "gluten-lwt";
2023-01-19 07:51:40 +01:00
inherit (gluten) doCheck meta src version;
2021-10-27 00:58:39 +02:00
propagatedBuildInputs = [
gluten
lwt
];
}