mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
14 lines
333 B
Nix
14 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";
|
|
};
|
|
}
|