gcsfuse: mark as broken on darwin

This commit is contained in:
Weijia Wang 2024-11-02 21:35:48 +01:00
parent 64b28c617d
commit ca3eca77cd

View File

@ -1,6 +1,7 @@
{ lib
, buildGoModule
, fetchFromGitHub
, stdenv
}:
buildGoModule rec {
@ -41,5 +42,7 @@ buildGoModule rec {
changelog = "https://github.com/GoogleCloudPlatform/gcsfuse/releases/tag/v${version}";
license = licenses.asl20;
maintainers = [ ];
# internal/cache/file/downloader/job.go:386:77: undefined: syscall.O_DIRECT
broken = stdenv.hostPlatform.isDarwin;
};
}