about summary refs log tree commit diff
path: root/pkgs/development/compilers/iasl/default.nix
blob: 973a07b1295f9d9a70b36eff8f47f797fe210eee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{stdenv, fetchurl, bison, flex}:

stdenv.mkDerivation {
  name = "iasl-20130117";

  src = fetchurl {
    url = http://www.acpica.org/download/acpica-unix-20130117.tar.gz;
    sha256 = "1zils7l7gnkbbl8916dlhvij1g625ryb7769zhzffn3flshfdivh";
  };

  NIX_CFLAGS_COMPILE = "-O3";

  buildFlags = "iasl";

  buildInputs = [ bison flex ];

  installPhase =
    ''
      install -d $out/bin
      install generate/unix/bin*/iasl $out/bin
    '';

  meta = {
    description = "Intel ACPI Compiler";
    homepage = http://www.acpica.org/;
    license = stdenv.lib.licenses.iasl;
  };
}