nixpkgs/pkgs/os-specific/linux/cpufrequtils/default.nix
Lluis Batlle 70dc369314 Updating the assertion to cpufrequtils: linux pc only.
The armv5tel-linux and mips64el-linux fail to build this too.
2013-03-25 22:04:14 +01:00

26 lines
638 B
Nix

{ stdenv, fetchurl, libtool, gettext }:
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
stdenv.mkDerivation {
name = "cpufrequtils-008";
src = fetchurl {
url = http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils-008.tar.gz;
md5 = "52d3e09e47ffef634833f7fab168eccf";
};
patchPhase = ''
sed -e "s@= /usr/bin/@= @g" \
-e "s@/usr/@$out/@" \
-i Makefile
'';
buildInputs = [ stdenv.gcc.libc.kernelHeaders libtool gettext ];
meta = {
description = "Tools to display or change the CPU governor settings";
platforms = stdenv.lib.platforms.linux;
};
}