3
0
Fork 0
forked from mirrors/nixpkgs
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
194 B
Nix
Raw Normal View History

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