2018-09-05 09:11:47 -07:00
|
|
|
{ stdenv, fetchFromGitHub, ocaml, findlib, dune
|
2017-08-28 02:17:22 -07:00
|
|
|
, ppx_fields_conv, ppx_sexp_conv, ppx_deriving
|
2018-07-20 17:44:44 -07:00
|
|
|
, base64, fieldslib, jsonm, re, stringext, uri
|
2016-11-12 00:55:42 -08:00
|
|
|
}:
|
2015-05-15 07:36:30 -07:00
|
|
|
|
2017-07-01 04:16:27 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2018-09-19 09:50:21 -07:00
|
|
|
version = "1.1.1";
|
2017-07-01 04:16:27 -07:00
|
|
|
name = "ocaml${ocaml.version}-cohttp-${version}";
|
2015-05-15 07:36:30 -07:00
|
|
|
|
2017-07-01 04:16:27 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mirage";
|
|
|
|
repo = "ocaml-cohttp";
|
|
|
|
rev = "v${version}";
|
2018-09-19 09:50:21 -07:00
|
|
|
sha256 = "1dzd6vy43b7p9xplzg2whylz5br59zxaqywa14b4l377f31gnwq1";
|
2017-07-01 04:16:27 -07:00
|
|
|
};
|
2015-05-15 07:36:30 -07:00
|
|
|
|
2018-09-05 09:11:47 -07:00
|
|
|
buildInputs = [ ocaml findlib dune jsonm ppx_fields_conv ppx_sexp_conv ];
|
2015-05-15 07:36:30 -07:00
|
|
|
|
2017-08-28 02:17:22 -07:00
|
|
|
propagatedBuildInputs = [ ppx_deriving base64 fieldslib re stringext uri ];
|
2015-05-15 07:36:30 -07:00
|
|
|
|
2018-09-05 09:11:47 -07:00
|
|
|
buildPhase = "dune build -p cohttp";
|
2015-05-15 07:36:30 -07:00
|
|
|
|
2018-09-05 09:11:47 -07:00
|
|
|
inherit (dune) installPhase;
|
2017-07-01 04:16:27 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "HTTP(S) library for Lwt, Async and Mirage";
|
|
|
|
license = stdenv.lib.licenses.isc;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
|
|
|
inherit (src.meta) homepage;
|
|
|
|
inherit (ocaml.meta) platforms;
|
|
|
|
};
|
2015-05-15 07:36:30 -07:00
|
|
|
}
|