2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, bison, flex }:
|
2018-02-15 20:50:57 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-10 04:35:42 +01:00
|
|
|
pname = "acpica-tools";
|
2021-12-28 18:53:08 +00:00
|
|
|
version = "20211217";
|
2018-02-15 20:50:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
|
2021-12-28 18:53:08 +00:00
|
|
|
sha256 = "14jrrdrl3sw438791zf2v6rjvhiq78yl7hz2ldzp83c251cgh495";
|
2018-02-15 20:50:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-O3";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
buildFlags = [
|
|
|
|
"acpibin"
|
|
|
|
"acpidump"
|
2021-08-03 08:59:11 +01:00
|
|
|
"acpiexamples"
|
2018-02-15 20:50:57 +00:00
|
|
|
"acpiexec"
|
|
|
|
"acpihelp"
|
2021-08-03 08:59:11 +01:00
|
|
|
"acpisrc"
|
2018-02-15 20:50:57 +00:00
|
|
|
"acpixtract"
|
2021-08-08 11:59:48 +01:00
|
|
|
"iasl"
|
2018-02-15 20:50:57 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ bison flex ];
|
|
|
|
|
2021-09-10 15:02:48 +01:00
|
|
|
# We can handle stripping ourselves.
|
|
|
|
INSTALLFLAGS = "-m 555";
|
|
|
|
|
2019-08-22 21:23:33 +01:00
|
|
|
installFlags = [ "PREFIX=${placeholder "out"}" ];
|
2018-02-15 20:50:57 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-02-15 20:50:57 +00:00
|
|
|
description = "ACPICA Tools";
|
|
|
|
homepage = "https://www.acpica.org/";
|
2021-08-03 08:59:11 +01:00
|
|
|
license = with licenses; [ iasl gpl2Only bsd3 ];
|
2018-02-15 20:50:57 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ tadfisher ];
|
|
|
|
};
|
|
|
|
}
|