about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/opencomposite/helper.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/opencomposite/helper.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/opencomposite/helper.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/nixpkgs/pkgs/development/libraries/opencomposite/helper.nix b/nixpkgs/pkgs/development/libraries/opencomposite/helper.nix
deleted file mode 100644
index f19f5e868139..000000000000
--- a/nixpkgs/pkgs/development/libraries/opencomposite/helper.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ writeShellApplication
-
-, monado
-, opencomposite
-}:
-writeShellApplication {
-  name = "opencomposite-helper";
-  text = ''
-    # Tell Proton to use OpenComposite instead of OpenVR
-    export VR_OVERRIDE=${opencomposite}/lib/opencomposite
-    # Help OpenComposite find the OpenXR runtime
-    export XR_RUNTIME_JSON=${monado}/share/openxr/1/openxr_monado.json
-    # Tell Steam Pressure Vessel to allow access to Monado
-    export PRESSURE_VESSEL_FILESYSTEMS_RW=$XDG_RUNTIME_DIR/monado_comp_ipc
-    exec "$@"
-  '';
-}
-