nixpkgs/pkgs/development/compilers/iasl/default.nix

33 lines
675 B
Nix
Raw Normal View History

{stdenv, fetchurl, fetchpatch, bison, flex}:
2017-03-11 16:28:56 +00:00
stdenv.mkDerivation rec {
pname = "iasl";
2019-01-17 08:25:21 +00:00
version = "20190108";
src = fetchurl {
2017-03-11 16:28:56 +00:00
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
2019-01-17 08:25:21 +00:00
sha256 = "0bqhr3ndchvfhxb31147z8gd81dysyz5dwkvmp56832d0js2564q";
};
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.unix;
};
}