chore: Remove legacy Python codebase

This commit is contained in:
Tera << 8 2025-06-21 12:58:41 -04:00
parent 919d247934
commit 643fd3c61c
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
14 changed files with 24 additions and 1058 deletions

View file

@ -3,9 +3,12 @@
}: pkgs.mkShell {
buildInputs = with pkgs; [
# Runtime dependencies
python3
pciutils
# UnrealXR build dependencies
go
gopls
# evdi build dependencies
libdrm
linuxHeaders
@ -37,11 +40,5 @@
mkdir -p "$PWD/data/config" "$PWD/data/data"
export UNREALXR_CONFIG_PATH="$PWD/data/config"
export UNREALXR_DATA_PATH="$PWD/data/data"
if [ ! -d ".venv" ]; then
python3 -m venv .venv
fi
source .venv/bin/activate
'';
}