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

34 lines
923 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage
, ppx_fields_conv, ppx_sexp_conv, stdlib-shims
2019-08-21 22:12:52 +01:00
, base64, fieldslib, jsonm, re, stringext, uri-sexp
2021-03-16 12:48:50 +00:00
, ocaml, fmt, alcotest
2016-11-12 08:55:42 +00:00
}:
buildDunePackage rec {
pname = "cohttp";
2021-03-16 12:48:50 +00:00
version = "2.5.5";
useDune2 = true;
2020-10-29 05:24:43 +00:00
minimumOCamlVersion = "4.04.1";
src = fetchurl {
url = "https://github.com/mirage/ocaml-cohttp/releases/download/v${version}/cohttp-v${version}.tbz";
2021-03-16 12:48:50 +00:00
sha256 = "0ywmql4lp6ps2gd064ixbjzsdnnn5vk3pipm005sswl553qqwaim";
};
buildInputs = [ jsonm ppx_fields_conv ppx_sexp_conv ];
propagatedBuildInputs = [ base64 fieldslib re stringext uri-sexp stdlib-shims ];
2021-03-16 12:48:50 +00:00
doCheck = lib.versionAtLeast ocaml.version "4.05";
checkInputs = [ fmt alcotest ];
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";
};
}