mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
lighthouse-steamvr: init at unstable-2021-03-28
This commit is contained in:
parent
2deb07f3ac
commit
ca2c480ecb
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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue