Add udev libraries to fix nix build failure
This commit is contained in:
parent
595cef5aa7
commit
aa79b90826
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@
|
|||
inherit (cargoToml.package) name version;
|
||||
src = ./.;
|
||||
cargoLock.lockFile = ./Cargo.lock;
|
||||
buildInputs = nonRustDeps;
|
||||
nativeBuildInputs = nonRustDeps;
|
||||
nativeBuildInputs = with pkgs; [pkg-config udev libudev-zero];
|
||||
buildInputs = with pkgs; [udev libudev-zero];
|
||||
postInstall = ''
|
||||
mkdir -p $out/etc/udev/rules.d
|
||||
echo "${udev-rule}" > $out/etc/udev/rules.d/70-heliox.rules
|
||||
|
|
Loading…
Reference in a new issue