ocamlPackages.eio_main: depend on `eio_linux` instead of `uring` Otherwise, Eio falls back to using the POSIX backend or fails with "The io_uring backend was disabled at compile-time"

Changed files
+2 -2
pkgs
development
ocaml-modules
eio
+2 -2
pkgs/development/ocaml-modules/eio/main.nix
···
, buildDunePackage
, eio
, eio_posix
-
, uring
+
, eio_linux
}:
buildDunePackage {
···
propagatedBuildInputs = [
eio_posix
] ++ lib.optionals stdenv.isLinux [
-
uring
+
eio_linux
];
}