* Add cpufrequtils to the channel.

svn path=/nixpkgs/trunk/; revision=31017
This commit is contained in:
Eelco Dolstra 2011-12-21 16:24:40 +00:00
parent b2bdf7aa9f
commit e1a96b2b88
2 changed files with 8 additions and 8 deletions

View file

@ -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;
};
}

View file

@ -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 { };