lighthouse-steamvr: 1.1.1 -> 1.2.0 (#346466)

This commit is contained in:
Ryan Mulligan 2024-10-04 13:50:13 -07:00 committed by GitHub
commit 7407c73329
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 20 additions and 1229 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,37 +1,38 @@
{ stdenv, fetchFromGitHub, lib, rustPlatform, pkg-config, dbus }:
{
stdenv,
fetchFromGitHub,
lib,
rustPlatform,
pkg-config,
dbus,
AppKit,
}:
rustPlatform.buildRustPackage rec {
pname = "Lighthouse";
version = "1.1.1";
version = "1.2.0";
src = fetchFromGitHub {
owner = "ShayBox";
repo = pname;
rev = version;
sha256 = "0g0cs54j1vmcig5nc8sqgx30nfn2zjs40pvv30j5g9cyyszbzwkw";
hash = "sha256-uJ8U4knNKAliHjxP0JnV1lSCEsB6OHyYSbb5aWboYV4=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"clap-verbosity-flag-2.1.1" = "1213bsb0bpvv6621j9zicjsqy05sv21gh6inrvszqwcmj6fxxc7j";
};
};
postPatch = ''
cp ${./Cargo.lock} Cargo.lock
'';
cargoHash = "sha256-XVPrtZNLdF9mKSl56kBepkpXRQBJsu9KlZRhb6BeG/E=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dbus ];
buildInputs = [ dbus ] ++ lib.optionals stdenv.isDarwin [ AppKit ];
meta = with lib; {
broken = stdenv.hostPlatform.isDarwin;
description = "VR Lighthouse power state management";
homepage = "https://github.com/ShayBox/Lighthouse";
license = licenses.mit;
maintainers = with maintainers; [ expipiplus1 bddvlpr ];
maintainers = with maintainers; [
expipiplus1
bddvlpr
];
mainProgram = "lighthouse";
};
}

View File

@ -30922,7 +30922,9 @@ with pkgs;
lightburn = libsForQt5.callPackage ../applications/graphics/lightburn { };
lighthouse-steamvr = callPackage ../tools/misc/lighthouse-steamvr { };
lighthouse-steamvr = callPackage ../tools/misc/lighthouse-steamvr {
inherit (darwin.apple_sdk.frameworks) AppKit;
};
liblinphone = callPackage ../development/libraries/liblinphone { };