-
Notifications
You must be signed in to change notification settings - Fork 0
/
monado.nix
182 lines (169 loc) · 3.94 KB
/
monado.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{ lib
, stdenv
, fetchFromGitLab
, writeText
, bluez
, cjson
, cmake
, dbus
, doxygen
, eigen
, elfutils
, ffmpeg
, glslang
, gst-plugins-base
, gstreamer
, hidapi
, libbsd
, libdrm
, libffi
, libGL
, libjpeg
, librealsense
, libsurvive
, libunwind
, libusb1
, libuv
, libuvc
, libv4l
, libXau
, libxcb
, libXdmcp
, libXext
, libXrandr
, onnxruntime
, opencv4
, openhmd
, openvr
, orc
, pcre2
, pkg-config
, python3
, SDL2
, shaderc
, udev
, vulkan-headers
, vulkan-loader
, wayland
, wayland-protocols
, wayland-scanner
, zlib
, zstd
, nixosTests
# Set as 'false' to build monado without service support, i.e. allow VR
# applications linking against libopenxr_monado.so to use OpenXR standalone
# instead of via the monado-service program. For more information see:
# https://gitlab.freedesktop.org/monado/monado/-/blob/master/doc/targets.md#xrt_feature_service-disabled
, serviceSupport ? true
, callPackage
, fetchFromGitHub
}:
let
xvsdkSrc = fetchFromGitHub {
owner = "SimulaVR";
repo = "xvsdk";
rev = "c58f6e022742841c8dc9a476ec80eb37416c0332";
sha256 = "14lfh2m1zfpgqi5y6x1pkckr0gk9x9q1d33q04lgxkggm8ipprsb";
};
xvsdk = callPackage (xvsdkSrc + "/xvsdk.nix") { };
in
stdenv.mkDerivation {
pname = "monado";
version = "unstable-2024-01-02";
# src = fetchFromGitLab {
# domain = "gitlab.freedesktop.org";
# owner = "monado";
# repo = "monado";
# rev = "bfa1c16ff9fc759327ca251a5d086b958b1a3b8a";
# hash = "sha256-wXRwOs9MkDre/VeW686DzmvKjX0qCSS13MILbYQD6OY=";
# };
src = ./.;
nativeBuildInputs = [
cmake
doxygen
glslang
pkg-config
python3
];
cmakeFlags = [
"-DXRT_FEATURE_SERVICE=${if serviceSupport then "ON" else "OFF"}"
"-DXRT_OPENXR_INSTALL_ABSOLUTE_RUNTIME_PATH=ON"
"-DXRT_BUILD_DRIVER_SIMULAVR=ON"
"-DXRT_HAVE_XVISIO=ON"
"-DXVSDK_INCLUDE_DIR=${xvsdk}/include"
"-DXVSDK_LIBRARY_DIR=${xvsdk}/lib"
];
# "-DXRT_HAVE_REALSENSE=ON"
# "-DCMAKE_INCLUDE_PATH=${librealsense.dev}/include:$CMAKE_INCLUDE_PATH"
# "-DCMAKE_PREFIX_PATH=${librealsense.dev}:$CMAKE_PREFIX_PATH"
buildInputs = [
bluez
cjson
dbus
eigen
elfutils
ffmpeg
gst-plugins-base
gstreamer
hidapi
libbsd
libdrm
libffi
libGL
libjpeg
librealsense
libsurvive
libunwind
libusb1
libuv
libuvc
libv4l
libXau
libxcb
libXdmcp
libXext
libXrandr
onnxruntime
opencv4
openhmd
openvr
orc
pcre2
SDL2
shaderc
udev
vulkan-headers
vulkan-loader
wayland
wayland-protocols
wayland-scanner
zlib
zstd
xvsdk
];
# known disabled drivers/features:
# - DRIVER_DEPTHAI - Needs depthai-core https://github.com/luxonis/depthai-core (See https://github.com/NixOS/nixpkgs/issues/292618)
# - DRIVER_ILLIXR - needs ILLIXR headers https://github.com/ILLIXR/ILLIXR (See https://github.com/NixOS/nixpkgs/issues/292661)
# - DRIVER_ULV2 - Needs proprietary Leapmotion SDK https://api.leapmotion.com/documentation/v2/unity/devguide/Leap_SDK_Overview.html (See https://github.com/NixOS/nixpkgs/issues/292624)
# - DRIVER_ULV5 - Needs proprietary Leapmotion SDK https://api.leapmotion.com/documentation/v2/unity/devguide/Leap_SDK_Overview.html (See https://github.com/NixOS/nixpkgs/issues/292624)
# Help openxr-loader find this runtime
setupHook = writeText "setup-hook" ''
export XDG_CONFIG_DIRS=@out@/etc/xdg''${XDG_CONFIG_DIRS:+:''${XDG_CONFIG_DIRS}}
'';
# We manually modified the CmakeLists.txt to incorporate this patch:
# patches = [
# We don't have $HOME/.steam when building
# ./force-enable-steamvr_lh.patch
# ];
passthru.tests = {
basic-service = nixosTests.monado;
};
meta = with lib; {
description = "Open source XR runtime";
homepage = "https://monado.freedesktop.org/";
license = licenses.boost;
maintainers = with maintainers; [ Scrumplex expipiplus1 prusnak ];
platforms = platforms.linux;
mainProgram = "monado-cli";
};
}