Created Small Project Directory

This commit is contained in:
2025-04-14 15:40:09 -05:00
commit da003eadb5
6 changed files with 2046 additions and 0 deletions

16
shell.nix Normal file
View File

@@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell rec {
nativeBuildInputs = [
pkg-config
];
buildInputs = [
udev alsa-lib vulkan-loader
xorg.libX11 xorg.libXcursor xorg.libXi xorg.libXrandr # To use the x11 feature
libxkbcommon wayland # To use the wayland feature
libGL
];
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
}