Merge pull request #179292 from vbgl/ocaml-mirage-channel-4.1.0

ocamlPackages.mirage-channel: 4.0.1 → 4.1.0
This commit is contained in:
superherointj 2022-07-03 13:43:26 -03:00 committed by GitHub
commit c9808f8a61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,20 +5,15 @@
buildDunePackage rec {
pname = "mirage-channel";
version = "4.0.1";
version = "4.1.0";
useDune2 = true;
minimalOCamlVersion = "4.07";
src = fetchurl {
url = "https://github.com/mirage/mirage-channel/releases/download/v${version}/mirage-channel-v${version}.tbz";
sha256 = "0wmb2zhiyp8n78xgcspcsyd19bhcml3kyli2caw3778wc1gyvfpc";
url = "https://github.com/mirage/mirage-channel/releases/download/v${version}/mirage-channel-${version}.tbz";
sha256 = "sha256-sBdoUdTd9ZeNcHK0IBGBeOYDDqULM7EYX+Pz2f2nIQA=";
};
# Make tests compatible with alcotest 1.4.0
postPatch = ''
substituteInPlace test/test_channel.ml --replace 'Fmt.kstrf Alcotest.fail' 'Fmt.kstrf (fun s -> Alcotest.fail s)'
'';
propagatedBuildInputs = [ cstruct logs lwt mirage-flow ];
doCheck = true;