Fix missing libusb dependency for open3d

This commit is contained in:
Sem Mulder 2022-10-06 13:48:32 +02:00 committed by adisbladis
parent 77b4e6835c
commit 548e7a8bcf

View file

@ -1302,9 +1302,10 @@ lib.composeManyExtensions [
);
open3d = super.open3d.overridePythonAttrs (old: {
buildInputs = (old.buildInputs or [ ]) ++ (with pkgs; [
udev
]);
buildInputs = (old.buildInputs or [ ]) ++ [
pkgs.udev
pkgs.libusb1
];
# TODO(Sem Mulder): Add overridable flags for CUDA/PyTorch/Tensorflow support.
autoPatchelfIgnoreMissingDeps = true;
});