ocamlPackages.google-drive-ocamlfuse: use dune 3

This commit is contained in:
Vincent Laporte
2023-01-12 09:08:03 +01:00
committed by Vincent Laporte
parent 91f334c3dc
commit 4b7da5f3be
@@ -1,12 +1,13 @@
{ lib, buildDunePackage, fetchFromGitHub
, extlib, ocamlfuse, gapi-ocaml, ocaml_sqlite3
, tiny_httpd
, ounit
, ounit2
}:
buildDunePackage rec {
pname = "google-drive-ocamlfuse";
version = "0.7.30";
duneVersion = "3";
src = fetchFromGitHub {
owner = "astrada";
@@ -16,7 +17,7 @@ buildDunePackage rec {
};
doCheck = true;
checkInputs = [ ounit ];
checkInputs = [ ounit2 ];
buildInputs = [ extlib ocamlfuse gapi-ocaml ocaml_sqlite3 tiny_httpd ];