2020-06-25 22:22:21 +01:00
|
|
|
{ lib, fetchurl, buildDunePackage
|
2021-05-11 05:54:15 +01:00
|
|
|
, ppx_sexp_conv, base64, jsonm, re, stringext, uri-sexp
|
2021-03-16 12:48:50 +00:00
|
|
|
, ocaml, fmt, alcotest
|
2022-06-30 06:29:12 +01:00
|
|
|
, crowbar
|
2016-11-12 08:55:42 +00:00
|
|
|
}:
|
2015-05-15 15:36:30 +01:00
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildDunePackage rec {
|
2021-01-21 00:24:35 +00:00
|
|
|
pname = "cohttp";
|
2022-06-30 06:29:12 +01:00
|
|
|
version = "5.0.0";
|
2020-06-29 10:02:01 +01:00
|
|
|
|
2022-06-30 06:29:12 +01:00
|
|
|
minimalOCamlVersion = "4.08";
|
2023-01-09 09:34:22 +00:00
|
|
|
duneVersion = "3";
|
2015-05-15 15:36:30 +01:00
|
|
|
|
2021-01-21 00:24:35 +00:00
|
|
|
src = fetchurl {
|
2022-06-30 06:29:12 +01:00
|
|
|
url = "https://github.com/mirage/ocaml-cohttp/releases/download/v${version}/cohttp-${version}.tbz";
|
|
|
|
sha256 = "sha256-/W/0uGyBg1XWGzoIYoWW2/UX1qfabo7exIG7BlPKWgU=";
|
2021-01-21 00:24:35 +00:00
|
|
|
};
|
2015-05-15 15:36:30 +01:00
|
|
|
|
2021-05-11 05:54:15 +01:00
|
|
|
buildInputs = [ jsonm ppx_sexp_conv ];
|
2015-05-15 15:36:30 +01:00
|
|
|
|
2021-05-11 05:54:15 +01:00
|
|
|
propagatedBuildInputs = [ base64 re stringext uri-sexp ];
|
2015-05-15 15:36:30 +01:00
|
|
|
|
2022-06-30 06:29:12 +01:00
|
|
|
doCheck = true;
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ fmt alcotest crowbar ];
|
2021-03-16 12:48:50 +00:00
|
|
|
|
2021-01-21 00:24:35 +00:00
|
|
|
meta = {
|
|
|
|
description = "HTTP(S) library for Lwt, Async and Mirage";
|
|
|
|
license = lib.licenses.isc;
|
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
|
|
homepage = "https://github.com/mirage/ocaml-cohttp";
|
|
|
|
};
|
2015-05-15 15:36:30 +01:00
|
|
|
}
|