6961b585d3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/iasl/versions. These checks were done: - built on NixOS - ran ‘/nix/store/hqhn3nlmqm58nkh71a97sd5s60yd2fdd-iasl-20180313/bin/iasl -h’ got 0 exit code - directory tree listing: https://gist.github.com/15e34bd3c2286ed995ac1e3040a1e568
31 lines
664 B
Nix
31 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;
|
|
};
|
|
}
|