ocamlPackages.ke: use Dune 2

This commit is contained in:
Vincent Laporte 2020-12-01 07:49:25 +01:00 committed by Vincent Laporte
parent 4569be3b21
commit 11c35305ca

View file

@ -7,6 +7,8 @@ buildDunePackage rec {
pname = "ke";
version = "0.4";
useDune2 = true;
src = fetchurl {
url = "https://github.com/mirage/ke/releases/download/v${version}/ke-v${version}.tbz";
sha256 = "13c9xy60vmq29mnwpg3h3zgl6gjbjfwbx1s0crfc6xwvark0zxnx";
@ -14,7 +16,7 @@ buildDunePackage rec {
propagatedBuildInputs = [ bigarray-compat fmt ];
checkInputs = lib.optionals doCheck [ alcotest bigstringaf ];
checkInputs = [ alcotest bigstringaf ];
doCheck = true;
minimumOCamlVersion = "4.03";