mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
* 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";
|
||||
|
||||
@ -16,5 +16,10 @@ stdenv.mkDerivation {
|
||||
-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 { };
|
||||
|
||||
cpufrequtils = (
|
||||
import ../os-specific/linux/cpufrequtils {
|
||||
inherit fetchurl stdenv libtool gettext;
|
||||
glibc = stdenv.gcc.libc;
|
||||
linuxHeaders = stdenv.gcc.libc.kernelHeaders;
|
||||
});
|
||||
cpufrequtils = callPackage ../os-specific/linux/cpufrequtils { };
|
||||
|
||||
cryopid = callPackage ../os-specific/linux/cryopid { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user