2018-09-05 18:11:47 +02:00
|
|
|
{ stdenv, fetchFromGitHub, ocaml, findlib, dune
|
2017-08-28 11:17:22 +02:00
|
|
|
, ppx_fields_conv, ppx_sexp_conv, ppx_deriving
|
2018-07-21 02:44:44 +02:00
|
|
|
, base64, fieldslib, jsonm, re, stringext, uri
|
2016-11-12 09:55:42 +01:00
|
|
|
}:
|
2015-05-15 16:36:30 +02:00
|
|
|
|
2017-07-01 13:16:27 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-01-15 05:20:03 +01:00
|
|
|
version = "1.0.2";
|
2017-07-01 13:16:27 +02:00
|
|
|
name = "ocaml${ocaml.version}-cohttp-${version}";
|
2015-05-15 16:36:30 +02:00
|
|
|
|
2017-07-01 13:16:27 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mirage";
|
|
|
|
repo = "ocaml-cohttp";
|
|
|
|
rev = "v${version}";
|
2018-01-15 05:20:03 +01:00
|
|
|
sha256 = "0zgn32axmjvkmbvyfkbjcqximzc4zcfxs118b98xyrqnvwb0k7ka";
|
2017-07-01 13:16:27 +02:00
|
|
|
};
|
2015-05-15 16:36:30 +02:00
|
|
|
|
2018-09-05 18:11:47 +02:00
|
|
|
buildInputs = [ ocaml findlib dune jsonm ppx_fields_conv ppx_sexp_conv ];
|
2015-05-15 16:36:30 +02:00
|
|
|
|
2017-08-28 11:17:22 +02:00
|
|
|
propagatedBuildInputs = [ ppx_deriving base64 fieldslib re stringext uri ];
|
2015-05-15 16:36:30 +02:00
|
|
|
|
2018-09-05 18:11:47 +02:00
|
|
|
buildPhase = "dune build -p cohttp";
|
2015-05-15 16:36:30 +02:00
|
|
|
|
2018-09-05 18:11:47 +02:00
|
|
|
inherit (dune) installPhase;
|
2017-07-01 13:16:27 +02: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 16:36:30 +02:00
|
|
|
}
|