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