mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
bbc0a5ee52
So we don't need to add bash to the service's PATH
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ rustPlatform
|
|
, buildNpmPackage
|
|
, testers
|
|
, coolercontrol
|
|
, runtimeShell
|
|
}:
|
|
|
|
{ version
|
|
, src
|
|
, meta
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "coolercontrold";
|
|
inherit version src;
|
|
sourceRoot = "${src.name}/coolercontrold";
|
|
|
|
cargoHash = "sha256-qXZ/LXbKkLvnEQibGyMvkkYhz2eEGUHsYxVF3EbCpFc=";
|
|
|
|
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 '"./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 '/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";
|
|
};
|
|
}
|