about summary refs log tree commit diff
path: root/pkgs/tools/system/hddfancontrol/default.nix
blob: 64409cbcdba035a01d6507fdbf94c63c826f4265 (plain) (blame)
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
{ lib, python3Packages, fetchFromGitHub, hddtemp, hdparm, smartmontools }:

python3Packages.buildPythonPackage rec {
  pname = "hddfancontrol";
  version = "1.5.1";

  src = fetchFromGitHub {
    owner = "desbma";
    repo = pname;
    rev = version;
    sha256 = "0b2grf98qnikayn18xll01dkm5pjpcjxdffgx1nyw9s0gqig8dg0";
  };

  propagatedBuildInputs = [
    python3Packages.python-daemon
    hddtemp
    hdparm
    smartmontools
  ];

  postInstall = ''
    mkdir -p $out/etc/systemd/system
    substitute systemd/hddfancontrol.service $out/etc/systemd/system/hddfancontrol.service \
        --replace /usr/bin/hddfancontrol $out/bin/hddfancontrol
    sed -i -e '/EnvironmentFile=.*/d' $out/etc/systemd/system/hddfancontrol.service
  '';

  meta = with lib; {
    description = "Dynamically control fan speed according to hard drive temperature on Linux";
    homepage = "https://github.com/desbma/hddfancontrol";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ benley ];
    mainProgram = "hddfancontrol";
  };
}