ocamlPackages.cohttp*: 2.5.4 -> 2.5.5

authored by sternenseemann and committed by Vincent Laporte 7015e86e bb46a6eb

+6 -2
+6 -2
pkgs/development/ocaml-modules/cohttp/default.nix
··· 1 1 { lib, fetchurl, buildDunePackage 2 2 , ppx_fields_conv, ppx_sexp_conv, stdlib-shims 3 3 , base64, fieldslib, jsonm, re, stringext, uri-sexp 4 + , ocaml, fmt, alcotest 4 5 }: 5 6 6 7 buildDunePackage rec { 7 8 pname = "cohttp"; 8 - version = "2.5.4"; 9 + version = "2.5.5"; 9 10 10 11 useDune2 = true; 11 12 ··· 13 14 14 15 src = fetchurl { 15 16 url = "https://github.com/mirage/ocaml-cohttp/releases/download/v${version}/cohttp-v${version}.tbz"; 16 - sha256 = "1q04spmki5zis5p5m1vs77i3k7ijm134j62g61071vblwx25z17a"; 17 + sha256 = "0ywmql4lp6ps2gd064ixbjzsdnnn5vk3pipm005sswl553qqwaim"; 17 18 }; 18 19 19 20 buildInputs = [ jsonm ppx_fields_conv ppx_sexp_conv ]; 20 21 21 22 propagatedBuildInputs = [ base64 fieldslib re stringext uri-sexp stdlib-shims ]; 23 + 24 + doCheck = lib.versionAtLeast ocaml.version "4.05"; 25 + checkInputs = [ fmt alcotest ]; 22 26 23 27 meta = { 24 28 description = "HTTP(S) library for Lwt, Async and Mirage";