Commit 21c9f7de authored by Daniel Quernheim's avatar Daniel Quernheim Committed by Vincent Laporte
Browse files

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"
parent e7059632
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
  ];
}