Commit e830b40e authored by Luna Simons's avatar Luna Simons
Browse files

lighthouse-steamvr: unstable-2021-03-28 -> 1.0.0

Previous version was based off the rust version (at the time) which is now corrected to 1.0.0. Version 1.1.0 is currently 'under maintenance' so it is adviced to stay on 1.0.0 for now.
parent 140d4f0b
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 ];
  };
}