slint gui

This commit is contained in:
Filipriec
2026-08-25 16:46:58 +02:00
parent aea54f8d33
commit 313166eae5
3 changed files with 3811 additions and 73 deletions

View File

@@ -22,7 +22,21 @@
};
devShells.default = pkgs.mkShell {
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ pkgs.openssl ];
# Runtime libraries needed by the Slint/Winit desktop client.
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
pkgs.openssl
pkgs.fontconfig
pkgs.libx11
pkgs.libxcursor
pkgs.libxi
pkgs.libxrandr
pkgs.libxext
pkgs.libxkbcommon
];
# Keep font discovery deterministic when running the prebuilt GUI.
FONTCONFIG_FILE = "${pkgs.fontconfig}/etc/fonts/fonts.conf";
FONTCONFIG_PATH = "${pkgs.fontconfig}/etc/fonts";
buildInputs = with pkgs; [
mermaid-cli