Fix udev rule quotation marks
were stripped by echo
This commit is contained in:
parent
aa79b90826
commit
b3ec529d1c
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@
|
||||||
buildInputs = with pkgs; [udev libudev-zero];
|
buildInputs = with pkgs; [udev libudev-zero];
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir -p $out/etc/udev/rules.d
|
mkdir -p $out/etc/udev/rules.d
|
||||||
echo "${udev-rule}" > $out/etc/udev/rules.d/70-heliox.rules
|
echo '${udev-rule}' > $out/etc/udev/rules.d/70-heliox.rules
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue