Unverified Commit 757a0d10 authored by Ellie Hermaszewska's avatar Ellie Hermaszewska Committed by GitHub
Browse files

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

lighthouse-steamvr: unstable-2021-03-28 -> 1.0.0
parents c9bcecf0 b1fdec53
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+1286 −0

File added.

Preview size limit exceeded, changes collapsed.

+15 −7
Original line number Diff line number Diff line
@@ -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 ];
  };
}