mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
brotli: fix on Darwin
This commit is contained in:
parent
6e58719b1b
commit
6f0a2af5bc
@ -15,6 +15,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ cmake ];
|
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; {
|
meta = with stdenv.lib; {
|
||||||
inherit (src.meta) homepage;
|
inherit (src.meta) homepage;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user