lol

pythonPackages.pyrealsense2: fix breakage

Fixes compilation error: `'cerr' is not a member of 'std'` in `wrappers/python/pyrs_device.cpp`.
This error appeared likely because either some upstream header removing the import, or because the compiler has gotten stricter.

+6
+6
pkgs/development/libraries/librealsense/default.nix
··· 52 52 ./py_pybind11_no_external_download.patch 53 53 ]; 54 54 55 + postPatch = '' 56 + # https://github.com/IntelRealSense/librealsense/issues/11092 57 + # insert a "#include <iostream" at beginning of file 58 + sed '1i\#include <iostream>' -i wrappers/python/pyrs_device.cpp 59 + ''; 60 + 55 61 nativeBuildInputs = [ 56 62 cmake 57 63 ninja