* Add cpufrequtils to the channel.
svn path=/nixpkgs/trunk/; revision=31017
This commit is contained in:
parent
b2bdf7aa9f
commit
e1a96b2b88
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, linuxHeaders, glibc, libtool, gettext}:
|
{ stdenv, fetchurl, libtool, gettext }:
|
||||||
|
|
||||||
assert stdenv.isLinux && stdenv.system != "powerpc-linux";
|
assert stdenv.isLinux && stdenv.system != "powerpc-linux";
|
||||||
|
|
||||||
@ -16,5 +16,10 @@ stdenv.mkDerivation {
|
|||||||
-i Makefile
|
-i Makefile
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ linuxHeaders glibc libtool gettext ];
|
buildInputs = [ stdenv.gcc.libc.kernelHeaders libtool gettext ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Tools to display or change the CPU governor settings";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -5171,12 +5171,7 @@ let
|
|||||||
|
|
||||||
conky = callPackage ../os-specific/linux/conky { };
|
conky = callPackage ../os-specific/linux/conky { };
|
||||||
|
|
||||||
cpufrequtils = (
|
cpufrequtils = callPackage ../os-specific/linux/cpufrequtils { };
|
||||||
import ../os-specific/linux/cpufrequtils {
|
|
||||||
inherit fetchurl stdenv libtool gettext;
|
|
||||||
glibc = stdenv.gcc.libc;
|
|
||||||
linuxHeaders = stdenv.gcc.libc.kernelHeaders;
|
|
||||||
});
|
|
||||||
|
|
||||||
cryopid = callPackage ../os-specific/linux/cryopid { };
|
cryopid = callPackage ../os-specific/linux/cryopid { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user