nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.mirage-block-ramdisk: fix tests with alcotest 1.4.0

authored by

Vincent Laporte and committed by
Vincent Laporte
07e185c5 53072cc0

+5
+5
pkgs/development/ocaml-modules/mirage-block-ramdisk/default.nix
··· 13 13 sha256 = "cc0e814fd54efe7a5b7a8c5eb1c04e2dece751b7d8dee2d95908a0768896e8af"; 14 14 }; 15 15 16 + # Make tests compatible with alcotest 1.4.0 17 + postPatch = '' 18 + substituteInPlace test/tests.ml --replace 'Fmt.kstrf Alcotest.fail' 'Fmt.kstrf (fun s -> Alcotest.fail s)' 19 + ''; 20 + 16 21 minimumOCamlVersion = "4.06"; 17 22 18 23 propagatedBuildInputs = [ io-page mirage-block ];