nixpkgs/pkgs/development/libraries/openvr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.8 KiB
Nix
Raw Normal View History

2023-08-12 10:20:10 +00:00
{ AppKit
, cmake
, fetchFromGitHub
, fetchpatch2
, Foundation
2023-08-12 10:20:10 +00:00
, jsoncpp
, lib
, libGL
, stdenv
}:
2023-08-12 10:20:10 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "openvr";
version = "2.2.3";
src = fetchFromGitHub {
owner = "ValveSoftware";
2023-08-12 10:20:10 +00:00
repo = "openvr";
rev = "v${finalAttrs.version}";
hash = "sha256-Dpl88Te+EoVasoCtwERGrYt3xK8o03h15r8IVxxPPCw=";
};
patches = [
# https://github.com/ValveSoftware/openvr/pull/594
(fetchpatch2 {
name = "use-correct-CPP11-definition-for-vsprintf_s.patch";
url = "https://github.com/ValveSoftware/openvr/commit/0fa21ba17748efcca1816536e27bdca70141b074.patch";
2023-08-12 10:20:10 +00:00
hash = "sha256-0sPNDx5qKqCzN35FfArbgJ0cTztQp+SMLsXICxneLx4=";
})
# https://github.com/ValveSoftware/openvr/pull/1716
(fetchpatch2 {
name = "add-ability-to-build-with-system-installed-jsoncpp.patch";
url = "https://github.com/ValveSoftware/openvr/commit/54a58e479f4d63e62e9118637cd92a2013a4fb95.patch";
2023-08-12 10:20:10 +00:00
hash = "sha256-aMojjbNjLvsGev0JaBx5sWuMv01sy2tG/S++I1NUi7U=";
})
];
postUnpack = ''
# Move in-tree jsoncpp out to complement the patch above
# fetchpatch2 is not able to handle these renames
mkdir source/thirdparty
mv source/src/json source/thirdparty/jsoncpp
'';
2023-08-12 10:20:10 +00:00
nativeBuildInputs = [
cmake
];
buildInputs = [
jsoncpp
libGL
] ++ lib.optionals stdenv.isDarwin [
AppKit
Foundation
];
cmakeFlags = [ "-DUSE_SYSTEM_JSONCPP=ON" "-DBUILD_SHARED=1" ];
2023-08-12 10:20:10 +00:00
meta = {
broken = stdenv.isDarwin;
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";
2023-08-12 10:20:10 +00:00
homepage = "https://github.com/ValveSoftware/openvr";
license = lib.licenses.bsd3;
2023-11-28 14:30:26 +00:00
maintainers = with lib.maintainers; [ Scrumplex ];
2023-08-12 10:20:10 +00:00
platforms = lib.platforms.unix;
};
2023-08-12 10:20:10 +00:00
})