blob: fc9adb9c3dc170e6b28d8d7f18ebc5193ec62464 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
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 = "2.1.0";
src = fetchFromGitHub {
owner = "cyring";
repo = "CoreFreq";
rev = version;
hash = "sha256-tEfZ4vgSH8y4XBP2OMIwZNwAHRJpyq6q8NWtuXm2mRQ=";
};
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"
];
};
}
|