Adding SzGui project

This commit is contained in:
2026-02-06 23:22:48 -06:00
parent 05d3decbd8
commit e6749c51c4
9 changed files with 183 additions and 4 deletions

View File

@@ -8,7 +8,6 @@
outputs = { self, nixpkgs }:
let
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
pkgs = import nixpkgs { inherit system; };
});
@@ -19,10 +18,29 @@
nativeBuildInputs = with pkgs; [
dotnet-sdk
omnisharp-roslyn
pkg-config
];
buildInputs = with pkgs; [
libGL
# X11 dependencies for Raylib
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXinerama
xorg.libXrandr
];
shellHook = ''
echo "// SESSION ZERO DEV SHELL //"
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${with pkgs; lib.makeLibraryPath [
libGL
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXinerama
xorg.libXrandr
]}"
'';
};
});