Init commit

This commit is contained in:
Ultradesu
2026-08-12 01:30:57 +01:00
commit 423ea59371
67 changed files with 23280 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rustup
pkg-config
cmake
clang
mold
];
buildInputs = with pkgs; [
fontconfig
freetype
libxkbcommon
wayland
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
];
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [
fontconfig
freetype
libxkbcommon
wayland
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
]);
RUST_BACKTRACE = "1";
}