bazel-watcher: Fix build on darwin

This commit is contained in:
Claudio Bley 2022-07-05 17:55:06 +02:00
parent 680f5bfc0c
commit b38a131850

View File

@ -27,6 +27,7 @@ buildBazelPackage rec {
removeRulesCC = false;
bazel = bazel_5;
bazelBuildFlags = lib.optionals stdenv.cc.isClang [ "--cxxopt=-x" "--cxxopt=c++" "--host_cxxopt=-x" "--host_cxxopt=c++" ];
bazelTarget = "//ibazel";
fetchAttrs = {
@ -84,7 +85,5 @@ buildBazelPackage rec {
license = licenses.asl20;
maintainers = with maintainers; [ kalbasit ];
platforms = platforms.all;
# broken on darwin, see https://github.com/NixOS/nixpkgs/issues/105573
broken = stdenv.isDarwin;
};
}