linuxPackages*.intel-speed-select (5.3+)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
{ stdenv, kernel }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "intel-speed-select";
|
||||
inherit (kernel) src version;
|
||||
|
||||
makeFlags = [ "bindir=${placeholder "out"}/bin" ];
|
||||
|
||||
postPatch = ''
|
||||
cd tools/power/x86/intel-speed-select
|
||||
sed -i 's,/usr,,g' Makefile
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Tool to enumerate and control the Intel Speed Select Technology features";
|
||||
homepage = https://www.kernel.org/;
|
||||
license = licenses.gpl2;
|
||||
platforms = [ "i686-linux" "x86_64-linux" ]; # x86-specific
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user