lol

Merge pull request #143822 from expipiplus1/ellie-lighthouse

authored by

Sandro and committed by
GitHub
9d4ccae3 77b8934f

+29
+27
pkgs/tools/misc/lighthouse-steamvr/default.nix
··· 1 + { fetchFromGitHub, lib, rustPlatform, pkg-config, dbus }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "Lighthouse"; 5 + version = "unstable-2021-03-28"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ShayBox"; 9 + repo = "Lighthouse"; 10 + rev = "a090889077557fe92610ca503979b5cfc0724d61"; 11 + sha256 = "0vfl4y61cdrah98x6xcnb3cyi8rwhlws8ps6vfdlmr3dv30mbnbb"; 12 + }; 13 + 14 + cargoSha256 = "0aqd9ixszwq6qmj751gxx453gwbhwqi16m72bkbkj9s6nfyqihql"; 15 + 16 + nativeBuildInputs = [ pkg-config ]; 17 + 18 + buildInputs = [ dbus ]; 19 + 20 + meta = with lib; { 21 + description = "VR Lighthouse power state management"; 22 + homepage = "https://github.com/ShayBox/Lighthouse"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ expipiplus1 ]; 25 + }; 26 + } 27 +
+2
pkgs/top-level/all-packages.nix
··· 26342 26342 26343 26343 lighthouse = callPackage ../applications/misc/lighthouse { }; 26344 26344 26345 + lighthouse-steamvr = callPackage ../tools/misc/lighthouse-steamvr { }; 26346 + 26345 26347 lighttable = callPackage ../applications/editors/lighttable {}; 26346 26348 26347 26349 libdsk = callPackage ../misc/emulators/libdsk { };