bd6a3b2160
Broke xen and virtualbox.
This reverts commit 5e49920d41
.
30 lines
664 B
Nix
30 lines
664 B
Nix
{stdenv, fetchurl, bison, flex}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "iasl-${version}";
|
|
version = "20180313";
|
|
|
|
src = fetchurl {
|
|
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
|
|
sha256 = "05ab2xfv9wqwbzjaa9xqgrvvan87rxv29hw48h1gcckpc5smp2wm";
|
|
};
|
|
|
|
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;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|