brotli: Use multiple outputs

This commit is contained in:
Eelco Dolstra 2018-01-02 11:45:29 +01:00
parent aa0d820793
commit e4beb97b9c
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
buildInputs = [ cmake ];
outputs = [ "out" "dev" "lib" ];
# 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-insensitivity?)
prePatch = "rm BUILD";