From a25e6cc9f1a00792e8e32afc452162526e9427cb Mon Sep 17 00:00:00 2001 From: KeksNino Date: Sat, 4 Jul 2026 22:03:38 +0200 Subject: [PATCH] fix compile error by properly installing fontconfig in nix flake --- flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index ae94726..fb28352 100644 --- a/flake.nix +++ b/flake.nix @@ -29,10 +29,10 @@ rust = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml; libPath = with pkgs; lib.makeLibraryPath [ - fontconfig.dev libxkbcommon libGL wayland + fontconfig ]; in @@ -44,8 +44,9 @@ buildInputs = [ rust cargo-nextest - pkg-config fish + pkg-config + fontconfig ]; LD_LIBRARY_PATH = "$LD_LIBRARY_PATH:${libPath}";