Patch hddtemp Nix store path

This commit is contained in:
Elnu 2023-08-26 12:30:06 -07:00
parent 185c97e30e
commit 54c63e8cf4
2 changed files with 5 additions and 5 deletions

View file

@ -63,6 +63,9 @@ rust-project TODO: write shell script for automatically updating `cargoHash`
version = "0.1.0";
buildAndTestSubdir = "status_cloud";
cargoHash = "sha256-mMxHI/rU1Gd5UR+hZ+5+FnBrff8uF+SrEvGJT7wh5tI=";
preBuild = ''
sed -i 's/Command::new("hddtemp")/${nixpkgs.lib.escape [ "/" ] "Command::new(\"${pkgs.hddtemp}\")"}/g' status_cloud/src/main.rs
'';
meta = meta // {
description = "Server status saved to a nextcloud note service.";
};
@ -104,7 +107,7 @@ rust-project TODO: write shell script for automatically updating `cargoHash`
serviceConfig = {
Type = "oneshot";
ExecStart = ''
${cfg.package}/bin/status_cloud --hddtemp-executable ${pkgs.hddtemp}/bin/hddtemp --config-file ${builtins.toString cfg.config_path}
${cfg.package}/bin/status_cloud --config-file ${builtins.toString cfg.config_path}
'';
};
};