acpica-tools: init at 20180209 (#34883)
This commit is contained in:
parent
9ce085f1f8
commit
9b7467eecb
@ -671,6 +671,7 @@
|
|||||||
symphorien = "Guillaume Girol <symphorien_nixpkgs@xlumurb.eu>";
|
symphorien = "Guillaume Girol <symphorien_nixpkgs@xlumurb.eu>";
|
||||||
szczyp = "Szczyp <qb@szczyp.com>";
|
szczyp = "Szczyp <qb@szczyp.com>";
|
||||||
sztupi = "Attila Sztupak <attila.sztupak@gmail.com>";
|
sztupi = "Attila Sztupak <attila.sztupak@gmail.com>";
|
||||||
|
tadfisher = "Tad Fisher <tadfisher@gmail.com>";
|
||||||
taeer = "Taeer Bar-Yam <taeer@necsi.edu>";
|
taeer = "Taeer Bar-Yam <taeer@necsi.edu>";
|
||||||
tailhook = "Paul Colomiets <paul@colomiets.name>";
|
tailhook = "Paul Colomiets <paul@colomiets.name>";
|
||||||
taketwo = "Sergey Alexandrov <alexandrov88@gmail.com>";
|
taketwo = "Sergey Alexandrov <alexandrov88@gmail.com>";
|
||||||
|
36
pkgs/tools/system/acpica-tools/default.nix
Normal file
36
pkgs/tools/system/acpica-tools/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -407,6 +407,8 @@ with pkgs;
|
|||||||
ffmpeg = ffmpeg_1;
|
ffmpeg = ffmpeg_1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
acpica-tools = callPackage ../tools/system/acpica-tools { };
|
||||||
|
|
||||||
actdiag = pythonPackages.actdiag;
|
actdiag = pythonPackages.actdiag;
|
||||||
|
|
||||||
actkbd = callPackage ../tools/system/actkbd { };
|
actkbd = callPackage ../tools/system/actkbd { };
|
||||||
|
Loading…
Reference in New Issue
Block a user