ocamlPackages.alcotest: 1.6.0 → 1.7.0

This commit is contained in:
Vincent Laporte 2023-04-10 14:15:13 +02:00
parent 8a288f2c76
commit 234b193821
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 6 additions and 2 deletions

View File

@ -4,11 +4,13 @@
buildDunePackage rec {
pname = "alcotest";
version = "1.6.0";
version = "1.7.0";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/alcotest/releases/download/${version}/alcotest-${version}.tbz";
sha256 = "sha256-/QD5ZoOVh0/zsdfvVm0U78Avp900Ej6yXVk1W+lLIyk=";
hash = "sha256-gSus2zS0XoiZXgfXMGvasvckee8ZlmN/HV0fQWZ5At8=";
};
nativeBuildInputs = [ ocaml-syntax-shims ];

View File

@ -7,6 +7,8 @@ buildDunePackage {
inherit (alcotest) version src;
duneVersion = "3";
propagatedBuildInputs = [ alcotest logs lwt fmt ];
doCheck = true;