My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/tools/system/acpica-tools/default.nix

37 lines
799 B

{ stdenv, fetchurl, bison, flex }:
stdenv.mkDerivation rec {
pname = "acpica-tools";
version = "20200430";
src = fetchurl {
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
sha256 = "0z19bniqsa8y0n1qrxmb6gz7m63jpwx22zgk5ablyriixhfpz07v";
};
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 ];
};
}