Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
61 lines
1.3 KiB
Nix
61 lines
1.3 KiB
Nix
{
|
|
stdenv,
|
|
usbrelay,
|
|
python3,
|
|
installShellFiles,
|
|
udevCheckHook,
|
|
}:
|
|
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 {
|
|
pname = "usbrelayd";
|
|
|
|
inherit (usbrelay) src version;
|
|
|
|
postPatch = ''
|
|
substituteInPlace 'usbrelayd.service' \
|
|
--replace '/usr/bin/python3' "${python}/bin/python3" \
|
|
--replace '/usr/sbin/usbrelayd' "$out/bin/usbrelayd"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
udevCheckHook
|
|
];
|
|
|
|
buildInputs = [ python ];
|
|
|
|
dontBuild = true;
|
|
|
|
doInstallCheck = 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
|
|
installManPage usbrelayd.8
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "USB Relay MQTT service";
|
|
inherit (usbrelay.meta)
|
|
homepage
|
|
license
|
|
maintainers
|
|
platforms
|
|
;
|
|
};
|
|
}
|