ocamlPackages.cohttp: 2.0.0 -> 2.1.3

This commit is contained in:
Vincent Laporte 2019-08-21 21:12:52 +00:00
parent 136f739184
commit e1d3ea6836
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -1,22 +1,22 @@
{ lib, fetchFromGitHub, buildDunePackage { lib, fetchFromGitHub, buildDunePackage
, ppx_fields_conv, ppx_sexp_conv , ppx_fields_conv, ppx_sexp_conv
, base64, fieldslib, jsonm, re, stringext, uri , base64, fieldslib, jsonm, re, stringext, uri-sexp
}: }:
buildDunePackage rec { buildDunePackage rec {
pname = "cohttp"; pname = "cohttp";
version = "2.0.0"; version = "2.1.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mirage"; owner = "mirage";
repo = "ocaml-cohttp"; repo = "ocaml-cohttp";
rev = "v${version}"; rev = "v${version}";
sha256 = "0nz9y7l5s9a2rq5sb1m5705h99wvf4dk3fhcgragwhy5nwwzcya8"; sha256 = "16k4ldmz6ljryhr139adlma130frb5wh13qswkrwc5gxx6d2wh8d";
}; };
buildInputs = [ jsonm ppx_fields_conv ppx_sexp_conv ]; buildInputs = [ jsonm ppx_fields_conv ppx_sexp_conv ];
propagatedBuildInputs = [ base64 fieldslib re stringext uri ]; propagatedBuildInputs = [ base64 fieldslib re stringext uri-sexp ];
meta = { meta = {
description = "HTTP(S) library for Lwt, Async and Mirage"; description = "HTTP(S) library for Lwt, Async and Mirage";