From a198f0481a375760359e01da6150df0d80f3b27a Mon Sep 17 00:00:00 2001 From: strawberry Date: Fri, 3 May 2024 15:11:06 -0400 Subject: [PATCH] nix: add liburing to devshell Signed-off-by: strawberry --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 980153c9..18d1d85b 100644 --- a/flake.nix +++ b/flake.nix @@ -179,6 +179,10 @@ # Useful for editing the book locally mdbook ]) + ++ (if !pkgsHost.stdenv.isDarwin then [ + # Needed for building with io_uring + pkgsHost.liburing + ] else []) ++ scopeHost.main.nativeBuildInputs; };