stardust-xr-gravity: init at 0-unstable-2024-08-20 (#354616)

This commit is contained in:
Sefa Eyeoglu 2024-11-09 11:06:02 +01:00 committed by GitHub
commit 18f2cc30ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1374 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,42 @@
{
lib,
fetchFromGitHub,
rustPlatform,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "stardust-xr-gravity";
version = "0-unstable-2024-08-20";
src = fetchFromGitHub {
owner = "stardustxr";
repo = "gravity";
rev = "96787ed3139717ea6061f6e259e9fed3e483274a";
hash = "sha256-R87u7CX2n7iOOEEB3cHae2doqCn/skChHgeU+RNsHVk=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"stardust-xr-0.45.0" = "sha256-1Bor53L+Fe18SU6MKwPLQXDGZq6E9++gtwDy4zkzZXw=";
"color-rs-0.8.0" = "sha256-/p4wYiLryY0+h0HBJUo4OV2jdZpcVn2kqv+8XewM4gM=";
};
};
passthru.updateScript = nix-update-script {
extraArgs = [ "--version=branch" ];
};
meta = {
description = "Utility to launch apps and stardust clients at an offet";
homepage = "https://stardustxr.org";
license = lib.licenses.mit;
mainProgram = "gravity";
maintainers = with lib.maintainers; [
pandapip1
technobaboo
];
platforms = lib.platforms.linux;
};
}