pango: disable docs on darwin for now

see https://github.com/mesonbuild/meson/issues/5202
This commit is contained in:
Tor Hedin Brønner 2019-04-02 21:37:25 +02:00 committed by Jan Tojnar
parent 916f0936d7
commit 469c3d7ec3
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -17,7 +17,8 @@ in stdenv.mkDerivation rec {
sha256 = "1lnxldmv1a12dq5h0dlq5jyzl4w75k76dp8cn360x2ijlm9w5h6j";
};
outputs = [ "bin" "dev" "out" "devdoc" ];
# FIXME: docs fail on darwin
outputs = [ "bin" "dev" "out" ] ++ optional (!stdenv.isDarwin) "devdoc";
nativeBuildInputs = [
meson ninja
@ -42,7 +43,7 @@ in stdenv.mkDerivation rec {
];
mesonFlags = [
"-Denable_docs=true"
"-Denable_docs=${if stdenv.isDarwin then "false" else "true"}"
];
enableParallelBuilding = true;