summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-05-16 23:37:59 +0200
committerGitHub <noreply@github.com>2018-05-16 23:37:59 +0200
commit2ecba01acf8a7abac743290e15face8c74f6cb36 (patch)
tree0565a9ea96bae0bc77d6c98a5fcbd650272fa5c2
parentdhcp: fix compilation on gcc8 (#40605) (diff)
parentiasl: Temporary fix for acpica/acpica/#387 (diff)
downloadnixpkgs-2ecba01acf8a7abac743290e15face8c74f6cb36.tar.gz
Merge pull request #40608 from Synthetica9/gcc8-iasl
iasl: 20180313 -> 20180508, temporary fix for upstream issue #387
-rw-r--r--pkgs/development/compilers/iasl/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/compilers/iasl/default.nix b/pkgs/development/compilers/iasl/default.nix
index 22f80ae559f7..a514672016f6 100644
--- a/pkgs/development/compilers/iasl/default.nix
+++ b/pkgs/development/compilers/iasl/default.nix
@@ -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";