lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 18 lines 455 B view raw
1{ stdenv, ocaml, findlib, jbuilder, conduit-lwt 2, logs, ppx_sexp_conv 3}: 4 5if !stdenv.lib.versionAtLeast conduit-lwt.version "1.0" 6then conduit-lwt 7else 8 9stdenv.mkDerivation rec { 10 name = "ocaml${ocaml.version}-conduit-lwt-unix-${version}"; 11 inherit (conduit-lwt) version src installPhase meta; 12 13 buildInputs = [ ocaml findlib jbuilder ppx_sexp_conv ]; 14 15 propagatedBuildInputs = [ conduit-lwt logs ]; 16 17 buildPhase = "jbuilder build -p conduit-lwt-unix"; 18}