about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/usbrelay/daemon.nix
blob: e5e4baae9e99160e35eb007f05859112e9aba67a (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
36
{ stdenv, usbrelay, python3 }:
let
  python = python3.withPackages (ps: with ps; [ usbrelay-py paho-mqtt ]);
in
# This is a separate derivation, not just an additional output of
# usbrelay, because otherwise, we have a cyclic dependency between
# usbrelay (default.nix) and the python module (python.nix).
stdenv.mkDerivation rec {
  pname = "usbrelayd";

  inherit (usbrelay) src version;

  postPatch = ''
    substituteInPlace 'usbrelayd.service' \
      --replace '/usr/bin/python3' "${python}/bin/python3" \
      --replace '/usr/sbin/usbrelayd' "$out/bin/usbrelayd"
  '';

  buildInputs = [ python ];

  dontBuild = true;

  installPhase = ''
    runHook preInstall;
    install -m 644 -D usbrelayd $out/bin/usbrelayd
    install -m 644 -D usbrelayd.service $out/lib/systemd/system/usbrelayd.service
    install -m 644 -D 50-usbrelay.rules $out/lib/udev/rules.d/50-usbrelay.rules
    install -m 644 -D usbrelayd.conf $out/etc/usbrelayd.conf # include this as an example
    runHook postInstall
  '';

  meta = {
    description = "USB Relay MQTT service";
    inherit (usbrelay.meta) homepage license maintainers platforms;
  };
}