acpica-tools: init at 20180209 (#34883)
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{ stdenv, fetchurl, bison, flex }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "acpica-tools-${version}";
|
||||
version = "20180209";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
|
||||
sha256 = "1rpdfwa4vwnvyxdp9ygqjckmabc3s8kyg3jyq4n4f0rhr1zl4zy5";
|
||||
};
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-O3";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
buildFlags = [
|
||||
"acpibin"
|
||||
"acpidump"
|
||||
"acpiexec"
|
||||
"acpihelp"
|
||||
"acpinames"
|
||||
"acpixtract"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ bison flex ];
|
||||
|
||||
installFlags = [ "PREFIX=$(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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user