depot/pkgs/os-specific/linux/cpufrequtils/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

32 lines
908 B
Nix

{ lib, stdenv, fetchurl, libtool, gettext }:
stdenv.mkDerivation rec {
pname = "cpufrequtils";
version = "008";
src = fetchurl {
url = "http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils-${version}.tar.gz";
hash = "sha256-AFOgcYPQaUg70GJhS8YcuAgMV32mHN9+ExsGThoa8Yg=";
};
patches = [
# I am not 100% sure that this is ok, but it breaks repeatable builds.
./remove-pot-creation-date.patch
];
patchPhase = ''
sed -e "s@= /usr/bin/@= @g" \
-e "s@/usr/@$out/@" \
-i Makefile
'';
buildInputs = [ stdenv.cc.libc.linuxHeaders libtool gettext ];
meta = with lib; {
description = "Tools to display or change the CPU governor settings";
homepage = "http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html";
license = licenses.gpl2Only;
platforms = [ "x86_64-linux" ];
mainProgram = "cpufreq-set";
};
}