* Add cpufrequtils to the channel.

svn path=/nixpkgs/trunk/; revision=31017

+8 -8
+7 -2
pkgs/os-specific/linux/cpufrequtils/default.nix
··· 1 - {stdenv, fetchurl, linuxHeaders, glibc, libtool, gettext}: 1 + { stdenv, fetchurl, libtool, gettext }: 2 2 3 3 assert stdenv.isLinux && stdenv.system != "powerpc-linux"; 4 4 ··· 16 16 -i Makefile 17 17 ''; 18 18 19 - buildInputs = [ linuxHeaders glibc libtool gettext ]; 19 + buildInputs = [ stdenv.gcc.libc.kernelHeaders libtool gettext ]; 20 + 21 + meta = { 22 + description = "Tools to display or change the CPU governor settings"; 23 + platforms = stdenv.lib.platforms.linux; 24 + }; 20 25 }
+1 -6
pkgs/top-level/all-packages.nix
··· 5171 5171 5172 5172 conky = callPackage ../os-specific/linux/conky { }; 5173 5173 5174 - cpufrequtils = ( 5175 - import ../os-specific/linux/cpufrequtils { 5176 - inherit fetchurl stdenv libtool gettext; 5177 - glibc = stdenv.gcc.libc; 5178 - linuxHeaders = stdenv.gcc.libc.kernelHeaders; 5179 - }); 5174 + cpufrequtils = callPackage ../os-specific/linux/cpufrequtils { }; 5180 5175 5181 5176 cryopid = callPackage ../os-specific/linux/cryopid { }; 5182 5177