From 86c6683e6208103224da74ace3d89031b3e10ab1 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 26 Oct 2020 06:27:59 +0100 Subject: [PATCH] ocamlPackages.google-drive-ocamlfuse: disable for OCaml < 4.06 --- pkgs/applications/networking/google-drive-ocamlfuse/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix index b9b1c1f54a9..72ff8bd8b4b 100644 --- a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix +++ b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix @@ -8,6 +8,8 @@ buildDunePackage rec { useDune2 = true; + minimumOCamlVersion = "4.06"; + src = fetchFromGitHub { owner = "astrada"; repo = "google-drive-ocamlfuse";