mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
48 lines
1.1 KiB
Nix
48 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"
|
|
];
|
|
};
|
|
}
|