From d1d623f00c4a3f5a10be54497952228e013a7581 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Fri, 12 May 2023 12:37:19 +0200 Subject: [PATCH] openvr: mark as broken on Darwin fatal error: lipo: /private/tmp/nix-build-openvr-1.23.8.drv-0/-d51d9b.out and /private/tmp/nix-build-openvr-1.23.8.drv-0/-429727.out have the same architectures (x86_64) and can't be in the same fat output file Signed-off-by: Sefa Eyeoglu --- pkgs/development/libraries/openvr/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/openvr/default.nix b/pkgs/development/libraries/openvr/default.nix index 65bd5fc49e4..c9c9707fce7 100644 --- a/pkgs/development/libraries/openvr/default.nix +++ b/pkgs/development/libraries/openvr/default.nix @@ -47,7 +47,8 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DUSE_SYSTEM_JSONCPP=ON" "-DBUILD_SHARED=1" ]; - meta = with lib;{ + meta = with lib; { + broken = stdenv.isDarwin; homepage = "https://github.com/ValveSoftware/openvr"; description = "An API and runtime that allows access to VR hardware from multiple vendors without requiring that applications have specific knowledge of the hardware they are targeting"; license = licenses.bsd3;