3dd3376491
Actually, we apparently managed to bump iasl separately so acpica-tools are upgraded from 20191018.
37 lines
799 B
Nix
37 lines
799 B
Nix
{ stdenv, fetchurl, bison, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "acpica-tools";
|
|
version = "20200110";
|
|
|
|
src = fetchurl {
|
|
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
|
|
sha256 = "1cb6aa6acrixmdzvj9vv4qs9lmlsbkd27pjlz14i1kq1x3xn0gwx";
|
|
};
|
|
|
|
NIX_CFLAGS_COMPILE = "-O3";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildFlags = [
|
|
"acpibin"
|
|
"acpidump"
|
|
"acpiexec"
|
|
"acpihelp"
|
|
"acpinames"
|
|
"acpixtract"
|
|
];
|
|
|
|
nativeBuildInputs = [ bison flex ];
|
|
|
|
installFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "ACPICA Tools";
|
|
homepage = "https://www.acpica.org/";
|
|
license = with licenses; [ gpl2 bsd3 ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ tadfisher ];
|
|
};
|
|
}
|