brotli: fix on Darwin

This commit is contained in:
Dan Peebles 2017-04-06 21:17:32 -04:00
parent 6e58719b1b
commit 6f0a2af5bc

View File

@ -15,6 +15,10 @@ stdenv.mkDerivation rec {
buildInputs = [ cmake ];
# This breaks on Darwin because our cmake hook tries to make a build folder
# and the wonderful bazel BUILD file is already there (yay case-insensitivty?)
prePatch = "rm BUILD";
meta = with stdenv.lib; {
inherit (src.meta) homepage;