brotli: fix on Darwin

+4
+4
pkgs/tools/compression/brotli/default.nix
··· 15 15 16 16 buildInputs = [ cmake ]; 17 17 18 + # This breaks on Darwin because our cmake hook tries to make a build folder 19 + # and the wonderful bazel BUILD file is already there (yay case-insensitivty?) 20 + prePatch = "rm BUILD"; 21 + 18 22 meta = with stdenv.lib; { 19 23 inherit (src.meta) homepage; 20 24