lol

handheld-daemon: Fix chmod path in udev rules (#434301)

authored by

Sandro and committed by
GitHub
f1b7148c d0e83189

+5 -2
+5 -2
pkgs/by-name/ha/handheld-daemon/package.nix
··· 70 70 71 71 substituteInPlace src/hhd/plugins/plugin.py \ 72 72 --replace-fail '"id"' '"${lib.getExe' coreutils "id"}"' 73 + 74 + substituteInPlace usr/lib/udev/rules.d/83-hhd.rules \ 75 + --replace-fail '/bin/chmod' '${lib.getExe' coreutils "chmod"}' 73 76 ''; 74 77 75 78 build-system = with python3Packages; [ ··· 89 92 doCheck = false; 90 93 91 94 postInstall = '' 92 - install -Dm644 $src/usr/lib/udev/rules.d/83-hhd.rules -t $out/lib/udev/rules.d/ 93 - install -Dm644 $src/usr/lib/udev/hwdb.d/83-hhd.hwdb -t $out/lib/udev/hwdb.d/ 95 + install -Dm644 usr/lib/udev/rules.d/83-hhd.rules -t $out/lib/udev/rules.d/ 96 + install -Dm644 usr/lib/udev/hwdb.d/83-hhd.hwdb -t $out/lib/udev/hwdb.d/ 94 97 ''; 95 98 96 99 meta = {