Font search

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-10-05 05:42:05 +03:00
parent 1414a66e56
commit 59acba3264
6 changed files with 603 additions and 545 deletions

View File

@@ -23,41 +23,44 @@
];
in
{
devShells.default = pkgs.mkShell.override { stdenv = pkgs.llvmPackages_21.libcxxStdenv; } {
packages =
with pkgs;
[
llvmPackages_21.clang-tools
lldb
codespell
doxygen
gtest
cppcheck
inotify-tools
devShells.default =
pkgs.mkShell.override { stdenv = pkgs.stdenvAdapters.useMoldLinker pkgs.gcc15Stdenv; }
{
packages =
with pkgs;
[
llvmPackages_21.clang-tools
lldb
codespell
doxygen
gtest
cppcheck
inotify-tools
pkg-config
wayland
wayland-protocols
wlr-protocols
wayland-scanner
libGL
libportal
glib
libxkbcommon
]
++ buildInputs
++ nativeBuildInputs
++ pkgs.lib.optionals pkgs.stdenv.isLinux (
with pkgs;
[
valgrind-light
]
);
pkg-config
wayland
wayland-protocols
wlr-protocols
wayland-scanner
libGL
libportal
glib
libxkbcommon
fontconfig
]
++ buildInputs
++ nativeBuildInputs
++ pkgs.lib.optionals pkgs.stdenv.isLinux (
with pkgs;
[
valgrind-light
]
);
env = { };
env = { };
shellHook = '''';
};
shellHook = '''';
};
}
);
}