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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
333 B
Nix
Raw Normal View History

{ buildDunePackage, ppx_sexp_conv, conduit, lwt, sexplib }:
2019-08-13 23:52:01 +02:00
buildDunePackage {
pname = "conduit-lwt";
inherit (conduit) version src;
buildInputs = [ ppx_sexp_conv ];
propagatedBuildInputs = [ conduit lwt sexplib ];
meta = conduit.meta // {
description = "A network connection establishment library for Lwt";
};
}