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"
This commit is contained in:
Daniel Quernheim
2023-07-16 09:51:14 +02:00
committed by Vincent Laporte
parent e7059632c6
commit 21c9f7de22
+2 -2
View File
@@ -3,7 +3,7 @@
, buildDunePackage
, eio
, eio_posix
, uring
, eio_linux
}:
buildDunePackage {
@@ -18,6 +18,6 @@ buildDunePackage {
propagatedBuildInputs = [
eio_posix
] ++ lib.optionals stdenv.isLinux [
uring
eio_linux
];
}