lighthouse-steamvr: init at unstable-2021-03-28

This commit is contained in:
Ellie Hermaszewska 2021-10-30 18:15:28 +08:00
parent 2deb07f3ac
commit ca2c480ecb
No known key found for this signature in database
GPG key ID: C8116E3A0C1CA76A
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ fetchFromGitHub, lib, rustPlatform, pkg-config, dbus }:
rustPlatform.buildRustPackage rec {
pname = "Lighthouse";
version = "unstable-2021-03-28";
src = fetchFromGitHub {
owner = "ShayBox";
repo = "Lighthouse";
rev = "a090889077557fe92610ca503979b5cfc0724d61";
sha256 = "0vfl4y61cdrah98x6xcnb3cyi8rwhlws8ps6vfdlmr3dv30mbnbb";
};
cargoSha256 = "0aqd9ixszwq6qmj751gxx453gwbhwqi16m72bkbkj9s6nfyqihql";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dbus ];
meta = with lib; {
description = "VR Lighthouse power state management";
homepage = "https://github.com/ShayBox/Lighthouse";
license = licenses.mit;
maintainers = with maintainers; [ expipiplus1 ];
};
}

View file

@ -26231,6 +26231,8 @@ with pkgs;
lighthouse = callPackage ../applications/misc/lighthouse { };
lighthouse-steamvr = callPackage ../tools/misc/lighthouse-steamvr { };
lighttable = callPackage ../applications/editors/lighttable {};
libdsk = callPackage ../misc/emulators/libdsk { };