From 68ff36f6834beecf74b30a724ae3ef31874a3518 Mon Sep 17 00:00:00 2001 From: Michael Forster Date: Mon, 29 Apr 2024 20:40:10 +0200 Subject: Add `libXcursor` and `libXi` to nix flake In my tests this was necessary to develop Niri using non-NixOS Nix. Otherwise Niri panics with this error message: called `Result::unwrap()` on an `Err` value: EventLoopCreation(NotSupported(NotSupportedError)). --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 2c5033da..c3a2b57e 100644 --- a/flake.nix +++ b/flake.nix @@ -74,6 +74,8 @@ wayland mesa libglvnd # For libEGL + xorg.libXcursor + xorg.libXi ]; LIBCLANG_PATH = "${pkgs.libclang.lib}/lib"; -- cgit