Merge pull request #143822 from expipiplus1/ellie-lighthouse
This commit is contained in:
commit
9d4ccae3d9
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/misc/lighthouse-steamvr/default.nix
Normal file
27
pkgs/tools/misc/lighthouse-steamvr/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -26342,6 +26342,8 @@ with pkgs;
|
||||||
|
|
||||||
lighthouse = callPackage ../applications/misc/lighthouse { };
|
lighthouse = callPackage ../applications/misc/lighthouse { };
|
||||||
|
|
||||||
|
lighthouse-steamvr = callPackage ../tools/misc/lighthouse-steamvr { };
|
||||||
|
|
||||||
lighttable = callPackage ../applications/editors/lighttable {};
|
lighttable = callPackage ../applications/editors/lighttable {};
|
||||||
|
|
||||||
libdsk = callPackage ../misc/emulators/libdsk { };
|
libdsk = callPackage ../misc/emulators/libdsk { };
|
||||||
|
|
Loading…
Reference in a new issue