ocamlPackages.ocf: use Dune 3

This commit is contained in:
Vincent Laporte 2023-05-02 06:08:40 +02:00
parent 19d59997ce
commit 031c36f91b
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,7 @@
buildDunePackage rec {
pname = "ocf";
version = "0.8.0";
useDune2 = true;
duneVersion = "3";
minimalOCamlVersion = "4.03";
src = fetchFromGitLab {
domain = "framagit.org";

View File

@ -4,7 +4,9 @@ buildDunePackage {
pname = "ocf_ppx";
minimalOCamlVersion = "4.11";
inherit (ocf) src version useDune2;
inherit (ocf) src version;
duneVersion = "3";
buildInputs = [ ppxlib ocf ];