diff options
| author | xeji <36407913+xeji@users.noreply.github.com> | 2018-05-16 23:37:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-16 23:37:59 +0200 |
| commit | 2ecba01acf8a7abac743290e15face8c74f6cb36 (patch) | |
| tree | 0565a9ea96bae0bc77d6c98a5fcbd650272fa5c2 | |
| parent | dhcp: fix compilation on gcc8 (#40605) (diff) | |
| parent | iasl: Temporary fix for acpica/acpica/#387 (diff) | |
| download | nixpkgs-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.nix | 10 |
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"; |
