about summary refs log tree commit diff
path: root/pkgs/development/libraries/opencomposite/default.nix
blob: a68e75b827bc141c902f6c6a45aa90d7774e8e97 (plain) (blame)
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
{ lib
, stdenv
, fetchFromGitLab

, cmake

, glm
, libGL
, openxr-loader
, python3
, vulkan-headers
, vulkan-loader
, xorg
}:

stdenv.mkDerivation {
  pname = "opencomposite";
  version = "unstable-2023-07-02";

  src = fetchFromGitLab {
    owner = "znixian";
    repo = "OpenOVR";
    rev = "a59b16204a1ee61a59413667a516375071a113f0";
    hash = "sha256-JSVd/+A/WldP+A2vOOG4lbwb4QCE/PymEm4VbjUxWrw=";
  };

  patches = [
    # Force OpenComposite to use our OpenXR and glm, instead of its Git submodules
    ./cmake-use-find_package-where-needed.patch
  ];

  nativeBuildInputs = [
    cmake
  ];

  buildInputs = [
    glm
    libGL
    openxr-loader
    python3
    vulkan-headers
    vulkan-loader
    xorg.libX11
  ];

  installPhase = ''
    runHook preInstall
    mkdir -p $out/lib/opencomposite
    cp -r bin/ $out/lib/opencomposite
    runHook postInstall
  '';

  meta = with lib; {
    description = "Reimplementation of OpenVR, translating calls to OpenXR";
    homepage = "https://gitlab.com/znixian/OpenOVR";
    license = with licenses; [ gpl3Only ];
    maintainers = with maintainers; [ Scrumplex ];
  };
}