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

42 lines
901 B

{ lib, stdenv, fetchurl, bison, flex }:
stdenv.mkDerivation rec {
pname = "acpica-tools";
version = "20211217";
src = fetchurl {
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
sha256 = "14jrrdrl3sw438791zf2v6rjvhiq78yl7hz2ldzp83c251cgh495";
};
NIX_CFLAGS_COMPILE = "-O3";
enableParallelBuilding = true;
buildFlags = [
"acpibin"
"acpidump"
"acpiexamples"
"acpiexec"
"acpihelp"
"acpisrc"
"acpixtract"
"iasl"
];
nativeBuildInputs = [ bison flex ];
# We can handle stripping ourselves.
INSTALLFLAGS = "-m 555";
installFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
description = "ACPICA Tools";
homepage = "https://www.acpica.org/";
license = with licenses; [ iasl gpl2Only bsd3 ];
platforms = platforms.linux;
maintainers = with maintainers; [ tadfisher ];
};
}