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";
useDune2 = true;
duneVersion = "3";
src = fetchFromGitHub {
owner = "pveber";
repo = "dbf";
rev = "${version}";
sha256 = "sha256-h1K5YDLbXGEJi/quKXvSR0gZ+WkBzut7AsVFv+Bm8/g=";
rev = version;
hash = "sha256-h1K5YDLbXGEJi/quKXvSR0gZ+WkBzut7AsVFv+Bm8/g=";
};
buildInputs = [ ppx_cstruct ];