nixpkgs/pkgs/tools/system/acpica-tools/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
901 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, bison, flex }:
stdenv.mkDerivation rec {
2019-07-10 06:35:42 +03:00
pname = "acpica-tools";
2021-12-28 21:53:08 +03:00
version = "20211217";
src = fetchurl {
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
2021-12-28 21:53:08 +03:00
sha256 = "14jrrdrl3sw438791zf2v6rjvhiq78yl7hz2ldzp83c251cgh495";
};
NIX_CFLAGS_COMPILE = "-O3";
enableParallelBuilding = true;
buildFlags = [
"acpibin"
"acpidump"
"acpiexamples"
"acpiexec"
"acpihelp"
"acpisrc"
"acpixtract"
2021-08-08 13:59:48 +03:00
"iasl"
];
nativeBuildInputs = [ bison flex ];
# We can handle stripping ourselves.
INSTALLFLAGS = "-m 555";
2019-08-22 23:23:33 +03:00
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 ];
};
}