stardust-xr-atmosphere: 0-unstable-2024-08-22 -> 0.51.1

(cherry picked from commit 148b37d4b4)
This commit is contained in:
Gavin John
2026-07-05 00:13:51 +00:00
committed by github-actions[bot]
parent 530e8b7314
commit 090b2beb19

View File

@@ -7,18 +7,23 @@
nix-update-script,
}:
rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "stardust-xr-atmosphere";
version = "0-unstable-2024-08-22";
version = "0.51.1";
src = fetchFromGitHub {
owner = "stardustxr";
repo = "atmosphere";
rev = "0c8bfb91e8ca32a4895f858067334ed265517309";
hash = "sha256-pk1+kkPV6fx+7Xz9hKFFVw402iztcvNC31zVCc3hfTY=";
tag = finalAttrs.version;
hash = "sha256-FH9Y+p17bGczRhLEfxVqc1peg9Aubw1pu7QOYb6RWvc=";
};
cargoHash = "sha256-eQjRbavmUW2iw0OEC/DPk2FflTc4QCn0K/c4Og+sGW4=";
cargoHash = "sha256-TVAm6BdIAE+gxWkpEUqF3R99UKhIGGSZK9qQ7urR7Uc=";
postInstall = ''
mkdir -p $out/share/atmosphere
cp -r default_envs $out/share/atmosphere
'';
__structuredAttrs = true;
strictDeps = true;
@@ -40,4 +45,4 @@ rustPlatform.buildRustPackage {
teams = with lib.teams; [ stardust-xr ];
platforms = lib.platforms.unix;
};
}
})