depot/pkgs/os-specific/linux/corefreq/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

47 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
kernel,
# See the official readme for a list of optional flags:
# https://github.com/cyring/CoreFreq/blob/master/README.md
extraFlags ? [ ],
}:
stdenv.mkDerivation rec {
pname = "corefreq";
version = "1.98.4";
src = fetchFromGitHub {
owner = "cyring";
repo = "CoreFreq";
rev = version;
hash = "sha256-ljo8EDoJmcdfVvC8s+Xbf5TsYruvSOU1OSYBPwQst1c=";
};
nativeBuildInputs = kernel.moduleBuildDependencies;
env.NIX_CFLAGS_COMPILE = "-I${src}/${stdenv.hostPlatform.qemuArch}";
makeFlags = [
"KERNELDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
"INSTALL_MOD_PATH=$(out)"
] ++ extraFlags;
preInstall = ''
mkdir -p $out/bin
'';
installFlags = [ "PREFIX=$(out)" ];
meta = {
description = "CPU monitoring and tuning software designed for 64-bit processors";
homepage = "https://github.com/cyring/CoreFreq";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ mrene ];
mainProgram = "corefreq-cli";
platforms = [
"x86_64-linux"
"aarch64-linux"
];
};
}