nixpkgs/pkgs/development/ocaml-modules/cohttp/lwt.nix
2019-04-07 20:11:18 +00:00

15 lines
322 B
Nix

{ stdenv, buildDunePackage, cohttp, ocaml_lwt, uri, ppx_sexp_conv, logs }:
if !stdenv.lib.versionAtLeast cohttp.version "0.99"
then cohttp
else
buildDunePackage rec {
pname = "cohttp-lwt";
inherit (cohttp) version src meta;
buildInputs = [ uri ppx_sexp_conv ];
propagatedBuildInputs = [ cohttp ocaml_lwt logs ];
}