depot/third_party/nixpkgs/pkgs/applications/system/coolercontrol/coolercontrold.nix

52 lines
1.3 KiB
Nix

{
rustPlatform,
testers,
libdrm,
coolercontrol,
runtimeShell,
}:
{
version,
src,
meta,
}:
rustPlatform.buildRustPackage {
pname = "coolercontrold";
inherit version src;
sourceRoot = "${src.name}/coolercontrold";
useFetchCargoVendor = true;
cargoHash = "sha256-ZAjaegUgNkKygXqskyeUkWpcqi1Jt7pE8GtqWlaP6/I=";
buildInputs = [ libdrm ];
postPatch = ''
# copy the frontend static resources to a directory for embedding
mkdir -p ui-build
cp -R ${coolercontrol.coolercontrol-ui-data}/* ui-build/
substituteInPlace build.rs --replace-fail '"./resources/app"' '"./ui-build"'
# Hardcode a shell
substituteInPlace 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"
'';
passthru.tests.version = testers.testVersion {
package = coolercontrol.coolercontrold;
# coolercontrold prints its version with "v" prefix
version = "v${version}";
};
meta = meta // {
description = "${meta.description} (Main Daemon)";
mainProgram = "coolercontrold";
};
}