mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
15 lines
333 B
Nix
15 lines
333 B
Nix
{ buildDunePackage, ppx_sexp_conv, conduit, lwt, sexplib }:
|
|
|
|
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";
|
|
};
|
|
}
|