lighthouse-steamvr: 1.1.1 -> 1.2.0 (#346466)
This commit is contained in:
commit
7407c73329
1212
pkgs/tools/misc/lighthouse-steamvr/Cargo.lock
generated
1212
pkgs/tools/misc/lighthouse-steamvr/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -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";
|
||||
};
|
||||
}
|
||||
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user