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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
{
rustPlatform,
testers,
hwdata,
pkg-config,
libdrm,
coolercontrol,
runtimeShell,
addDriverRunpath,
python3Packages,
liquidctl,
protobuf,
}:
{
version,
src,
meta,
}:
rustPlatform.buildRustPackage {
pname = "coolercontrold";
inherit version src;
sourceRoot = "${src.name}/coolercontrold";
cargoHash = "sha256-DE1m/odw90epyR8U9H1pxyJXariIHLXwk+mVYi8cu5A=";
buildInputs = [
hwdata
libdrm
];
nativeBuildInputs = [
pkg-config
protobuf
addDriverRunpath
python3Packages.wrapPython
];
checkFlags = [
# This test has a build-machine dependency and will be removed from the normal test suite in the next release
"--skip=repositories::hwmon::hwmon_repo::coalescer_tests::fast_device_no_added_latency"
];
pythonPath = [ liquidctl ];
postPatch = ''
# copy the frontend static resources to a directory for embedding
mkdir -p ui-build
cp -R ${coolercontrol.coolercontrol-ui-data}/* resources/app/
# Hardcode a shell
substituteInPlace daemon/src/repositories/utils.rs \
--replace-fail 'Command::new("sh")' 'Command::new("${runtimeShell}")'
'';
postInstall = ''
install -Dm444 "${src}/packaging/systemd/coolercontrold.service" -t "$out/lib/systemd/system"
substituteInPlace "$out/lib/systemd/system/coolercontrold.service" \
--replace-fail '/usr/bin' "$out/bin"
'';
postFixup = ''
addDriverRunpath "$out/bin/coolercontrold"
buildPythonPath "''${pythonPath[*]}"
wrapProgram "$out/bin/coolercontrold" \
--prefix PATH : $program_PATH \
--prefix PYTHONPATH : $program_PYTHONPATH
'';
passthru.tests.version = testers.testVersion {
package = coolercontrol.coolercontrold;
};
meta = meta // {
description = "${meta.description} (Main Daemon)";
mainProgram = "coolercontrold";
};
}
|