Merge pull request #114235 from r-ryantm/auto-update/ocaml4.10.0-alcotest

ocamlPackages.alcotest: 1.2.3 -> 1.3.0

authored by

Ben Siraphob and committed by
GitHub
8d5fa0b0 bbd24841

+7 -4
+2 -2
pkgs/development/ocaml-modules/alcotest/default.nix
··· 4 4 5 5 buildDunePackage rec { 6 6 pname = "alcotest"; 7 - version = "1.2.3"; 7 + version = "1.3.0"; 8 8 9 9 useDune2 = true; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/mirage/alcotest/releases/download/${version}/alcotest-mirage-${version}.tbz"; 13 - sha256 = "1bmjcivbmd4vib15v4chycgd1gl8js9dk94vzxkdg06zxqd4hp08"; 13 + sha256 = "sha256-efnevbyolTdNb91zr4pHDcvgaLQQSD01wEu2zMM+iaw="; 14 14 }; 15 15 16 16 propagatedBuildInputs = [ astring cmdliner fmt uuidm re stdlib-shims uutf ];
+5 -2
pkgs/development/ocaml-modules/alcotest/lwt.nix
··· 1 - { lib, buildDunePackage, alcotest, logs, ocaml_lwt }: 1 + { lib, buildDunePackage, alcotest, logs, ocaml_lwt, fmt 2 + , re, cmdliner 3 + }: 2 4 3 5 buildDunePackage { 4 6 pname = "alcotest-lwt"; 5 7 6 8 inherit (alcotest) version src useDune2; 7 9 8 - propagatedBuildInputs = [ alcotest logs ocaml_lwt ]; 10 + propagatedBuildInputs = [ alcotest logs ocaml_lwt fmt ]; 9 11 10 12 doCheck = true; 13 + checkInputs = [ re cmdliner ]; 11 14 12 15 meta = alcotest.meta // { 13 16 description = "Lwt-based helpers for Alcotest";