lol

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

ocamlPackages.mirage-channel: 4.0.1 → 4.1.0

authored by

superherointj and committed by
GitHub
c9808f8a 8507922b

+4 -9
+4 -9
pkgs/development/ocaml-modules/mirage-channel/default.nix
··· 5 5 6 6 buildDunePackage rec { 7 7 pname = "mirage-channel"; 8 - version = "4.0.1"; 8 + version = "4.1.0"; 9 9 10 - useDune2 = true; 10 + minimalOCamlVersion = "4.07"; 11 11 12 12 src = fetchurl { 13 - url = "https://github.com/mirage/mirage-channel/releases/download/v${version}/mirage-channel-v${version}.tbz"; 14 - sha256 = "0wmb2zhiyp8n78xgcspcsyd19bhcml3kyli2caw3778wc1gyvfpc"; 13 + url = "https://github.com/mirage/mirage-channel/releases/download/v${version}/mirage-channel-${version}.tbz"; 14 + sha256 = "sha256-sBdoUdTd9ZeNcHK0IBGBeOYDDqULM7EYX+Pz2f2nIQA="; 15 15 }; 16 - 17 - # Make tests compatible with alcotest 1.4.0 18 - postPatch = '' 19 - substituteInPlace test/test_channel.ml --replace 'Fmt.kstrf Alcotest.fail' 'Fmt.kstrf (fun s -> Alcotest.fail s)' 20 - ''; 21 16 22 17 propagatedBuildInputs = [ cstruct logs lwt mirage-flow ]; 23 18