3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/ocaml-modules/cstruct/lwt.nix

11 lines
205 B
Nix
Raw Normal View History

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