ocamlPackages.dbf: use Dune 3

This commit is contained in:
Vincent Laporte 2023-03-28 08:57:55 +02:00
parent 23e5b45f18
commit 0e0155ed96
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -7,13 +7,13 @@ buildDunePackage rec {
minimalOCamlVersion = "4.08"; minimalOCamlVersion = "4.08";
useDune2 = true; duneVersion = "3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pveber"; owner = "pveber";
repo = "dbf"; repo = "dbf";
rev = "${version}"; rev = version;
sha256 = "sha256-h1K5YDLbXGEJi/quKXvSR0gZ+WkBzut7AsVFv+Bm8/g="; hash = "sha256-h1K5YDLbXGEJi/quKXvSR0gZ+WkBzut7AsVFv+Bm8/g=";
}; };
buildInputs = [ ppx_cstruct ]; buildInputs = [ ppx_cstruct ];