2018-06-05 18:06:09 +00:00
|
|
|
{stdenv, fetchurl, fetchpatch, bison, flex}:
|
2009-01-25 14:31:42 +00:00
|
|
|
|
2017-03-11 16:28:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "iasl";
|
2019-11-02 17:03:37 +00:00
|
|
|
version = "20191018";
|
2013-01-28 11:42:24 +00:00
|
|
|
|
2009-01-25 14:31:42 +00:00
|
|
|
src = fetchurl {
|
2017-03-11 16:28:56 +00:00
|
|
|
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
|
2019-11-02 17:03:37 +00:00
|
|
|
sha256 = "0pz95fb1zvsj9238bg7a4vxl1svn5mnjg10sn5qvgr008q0v9782";
|
2009-01-25 14:31:42 +00:00
|
|
|
};
|
|
|
|
|
2018-05-16 19:10:59 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
|
|
"-O3"
|
|
|
|
];
|
2009-01-25 14:31:42 +00:00
|
|
|
|
2013-01-28 11:42:24 +00:00
|
|
|
buildFlags = "iasl";
|
2009-01-25 14:31:42 +00:00
|
|
|
|
|
|
|
buildInputs = [ bison flex ];
|
|
|
|
|
2013-01-28 11:42:24 +00:00
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
install -d $out/bin
|
|
|
|
install generate/unix/bin*/iasl $out/bin
|
|
|
|
'';
|
|
|
|
|
2009-01-25 14:31:42 +00:00
|
|
|
meta = {
|
|
|
|
description = "Intel ACPI Compiler";
|
|
|
|
homepage = http://www.acpica.org/;
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.iasl;
|
2018-11-15 21:17:03 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-01-25 14:31:42 +00:00
|
|
|
};
|
|
|
|
}
|