nixpkgs/pkgs/development/ocaml-modules/cohttp/lwt.nix

15 lines
322 B
Nix
Raw Normal View History

2019-04-06 15:54:37 +02:00
{ 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 ];
2019-04-06 15:54:37 +02:00
propagatedBuildInputs = [ cohttp ocaml_lwt logs ];
}