1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 18:03:22 +00:00

iasl: Temporary fix for acpica/acpica/#387

This commit is contained in:
Patrick Hilhorst 2018-05-16 21:10:59 +02:00
parent d2f2132160
commit 482a41f025
No known key found for this signature in database
GPG key ID: 589BB0A8DAFEF2B2

View file

@ -9,7 +9,11 @@ stdenv.mkDerivation rec {
sha256 = "1n7lqmv77kg28drahvxzybwl9v4hzwi8i7xkpgliclfcp5ff909b";
};
NIX_CFLAGS_COMPILE = "-O3";
NIX_CFLAGS_COMPILE = [
"-O3"
# See: https://github.com/acpica/acpica/issues/387:
"-Wno-error=format-overflow"
];
buildFlags = "iasl";