mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
stardust-xr-sphereland: init at 0-unstable-2023-11-06
This commit is contained in:
parent
03661d6d83
commit
a784f38df7
1687
pkgs/by-name/st/stardust-xr-sphereland/Cargo.lock
generated
Normal file
1687
pkgs/by-name/st/stardust-xr-sphereland/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
48
pkgs/by-name/st/stardust-xr-sphereland/package.nix
Normal file
48
pkgs/by-name/st/stardust-xr-sphereland/package.nix
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
libxkbcommon,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "stardust-xr-sphereland";
|
||||
version = "0-unstable-2023-11-06";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stardustxr";
|
||||
repo = "sphereland";
|
||||
rev = "39552d918c99a84eaf5f2d5e8734a472bf196f65";
|
||||
hash = "sha256-LKdqTl14cdgD14IwAP34mWdDgREhy1CHOT86HywOxqM=";
|
||||
};
|
||||
|
||||
env.STARDUST_RES_PREFIXES = "${src}/res";
|
||||
|
||||
cargoLock = {
|
||||
lockFile = ./Cargo.lock;
|
||||
outputHashes = {
|
||||
"stardust-xr-0.14.1" = "sha256-aJYovCKcR6zoqsVenCBnL5a/ccvXxNku+mAKRf0pp1Q=";
|
||||
"stardust-xr-molecules-0.29.0" = "sha256-rzbLqx+X8KEjut6Cq4x/qiSN9OfbMemrDUP0F+hXy4U=";
|
||||
};
|
||||
};
|
||||
buildInputs = [
|
||||
libxkbcommon
|
||||
];
|
||||
|
||||
passthru.updateScript = nix-update-script {
|
||||
extraArgs = [ "--version=branch" ];
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Pointer/keyboard operated window manager for Stardust XR";
|
||||
homepage = "https://stardustxr.org";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "sphereland";
|
||||
maintainers = with lib.maintainers; [
|
||||
pandapip1
|
||||
technobaboo
|
||||
];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user