Merge pull request #234060 from bddvlpr/submit/lighthouse-steamvr-1.0.0

lighthouse-steamvr: unstable-2021-03-28 -> 1.0.0
This commit is contained in:
Ellie Hermaszewska 2023-05-26 23:28:08 +08:00 committed by GitHub
commit 757a0d107c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1307 additions and 7 deletions

View file

@ -1857,6 +1857,12 @@
githubId = 11135;
name = "Berk D. Demir";
};
bddvlpr = {
email = "luna@bddvlpr.com";
github = "bddvlpr";
githubId = 17461028;
name = "Luna Simons";
};
bdesham = {
email = "benjamin@esham.io";
github = "bdesham";

File diff suppressed because it is too large Load diff

View file

@ -2,16 +2,25 @@
rustPlatform.buildRustPackage rec {
pname = "Lighthouse";
version = "unstable-2021-03-28";
version = "1.0.0";
src = fetchFromGitHub {
owner = "ShayBox";
repo = "Lighthouse";
rev = "a090889077557fe92610ca503979b5cfc0724d61";
sha256 = "0vfl4y61cdrah98x6xcnb3cyi8rwhlws8ps6vfdlmr3dv30mbnbb";
repo = pname;
rev = version;
sha256 = "0628v6fq9dcv1w4spgnypgyxf1qw5x03yhasink5s9nqpcip0w4h";
};
cargoSha256 = "0aqd9ixszwq6qmj751gxx453gwbhwqi16m72bkbkj9s6nfyqihql";
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"clap-verbosity-flag-2.0.0" = "125b8ki3dqj2kilimmvpi9wslwky8xacydi75c2bdrxpi926nya6";
};
};
postPatch = ''
cp ${./Cargo.lock} Cargo.lock
'';
nativeBuildInputs = [ pkg-config ];
@ -22,7 +31,6 @@ rustPlatform.buildRustPackage rec {
description = "VR Lighthouse power state management";
homepage = "https://github.com/ShayBox/Lighthouse";
license = licenses.mit;
maintainers = with maintainers; [ expipiplus1 ];
maintainers = with maintainers; [ expipiplus1 bddvlpr ];
};
}