ocamlPackages.cow: use Dune 3

This commit is contained in:
Vincent Laporte 2023-03-17 06:07:44 +01:00 committed by Vincent Laporte
parent 43facdc480
commit 7981230822

View file

@ -1,10 +1,10 @@
{ lib, fetchurl, buildDunePackage, ocaml, alcotest
{ lib, fetchurl, buildDunePackage, alcotest
, uri, xmlm, omd, ezjsonm
}:
buildDunePackage rec {
useDune2 = true;
minimumOCamlVersion = "4.02.3";
duneVersion = "3";
minimalOCamlVersion = "4.08";
version = "2.4.0";
pname = "cow";
@ -16,7 +16,7 @@ buildDunePackage rec {
propagatedBuildInputs = [ xmlm uri ezjsonm omd ];
checkInputs = [ alcotest ];
doCheck = lib.versionAtLeast ocaml.version "4.08";
doCheck = true;
meta = with lib; {
description = "Caml on the Web";