nixpkgs/pkgs/development/ocaml-modules/cstruct/lwt.nix
2018-11-12 17:25:18 +00:00

11 lines
195 B
Nix

{ buildDunePackage, cstruct, lwt }:
buildDunePackage {
pname = "cstruct-lwt";
inherit (cstruct) version src meta;
minimumOCamlVersion = "4.02";
propagatedBuildInputs = [ cstruct lwt ];
}