nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 42 lines 571 B view raw
1{ 2 buildDunePackage, 3 conduit-lwt, 4 ppx_sexp_conv, 5 lwt, 6 uri, 7 ipaddr, 8 ipaddr-sexp, 9 ca-certs, 10 logs, 11 lwt_ssl, 12 lwt_log, 13 ssl, 14}: 15 16buildDunePackage { 17 pname = "conduit-lwt-unix"; 18 inherit (conduit-lwt) version src; 19 20 buildInputs = [ ppx_sexp_conv ]; 21 22 propagatedBuildInputs = [ 23 conduit-lwt 24 lwt 25 uri 26 ipaddr 27 ipaddr-sexp 28 ca-certs 29 logs 30 lwt_ssl 31 ]; 32 33 doCheck = true; 34 checkInputs = [ 35 lwt_log 36 ssl 37 ]; 38 39 meta = conduit-lwt.meta // { 40 description = "Network connection establishment library for Lwt_unix"; 41 }; 42}