some cleanup

This commit is contained in:
Tao Tien 2026-02-06 22:07:10 -08:00
parent bcbaab6909
commit d52a1c4d8e
25 changed files with 138 additions and 2054 deletions

View file

@ -21,7 +21,7 @@
};
in {
devShells.default = with pkgs;
mkShell {
mkShell rec {
buildInputs =
[
# Rust dependencies
@ -53,13 +53,7 @@
binaryen
];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
LD_LIBRARY_PATH = lib.makeLibraryPath [
vulkan-loader
xorg.libX11
xorg.libXi
xorg.libXcursor
libxkbcommon
];
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
RUST_LOG = "jong=trace";
};
}