Merge pull request #40608 from Synthetica9/gcc8-iasl

iasl: 20180313 -> 20180508,  temporary fix for upstream issue #387
This commit is contained in:
xeji 2018-05-16 23:37:59 +02:00 committed by GitHub
commit 2ecba01acf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,14 +2,18 @@
stdenv.mkDerivation rec {
name = "iasl-${version}";
version = "20180313";
version = "20180508";
src = fetchurl {
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
sha256 = "05ab2xfv9wqwbzjaa9xqgrvvan87rxv29hw48h1gcckpc5smp2wm";
sha256 = "1n7lqmv77kg28drahvxzybwl9v4hzwi8i7xkpgliclfcp5ff909b";
};
NIX_CFLAGS_COMPILE = "-O3";
NIX_CFLAGS_COMPILE = [
"-O3"
# See: https://github.com/acpica/acpica/issues/387:
"-Wno-error=format-overflow"
];
buildFlags = "iasl";