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

11 lines
195 B
Nix
Raw Normal View History

{ buildDunePackage, cstruct, lwt }:
2017-11-27 20:08:40 +01:00
buildDunePackage {
pname = "cstruct-lwt";
inherit (cstruct) version src meta;
2017-11-27 20:08:40 +01:00
minimumOCamlVersion = "4.02";
2017-11-27 20:08:40 +01:00
propagatedBuildInputs = [ cstruct lwt ];
}