mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 10:22:54 +08:00
[Backport release-25.05] xrizer: 0.2 -> 0.3 (#442427)
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
|
fetchpatch2,
|
||||||
lib,
|
lib,
|
||||||
libGL,
|
libGL,
|
||||||
libxkbcommon,
|
libxkbcommon,
|
||||||
@@ -9,19 +10,28 @@
|
|||||||
rustPlatform,
|
rustPlatform,
|
||||||
shaderc,
|
shaderc,
|
||||||
vulkan-loader,
|
vulkan-loader,
|
||||||
|
stdenv,
|
||||||
}:
|
}:
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "xrizer";
|
pname = "xrizer";
|
||||||
version = "0.2";
|
version = "0.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Supreeeme";
|
owner = "Supreeeme";
|
||||||
repo = "xrizer";
|
repo = "xrizer";
|
||||||
tag = "v${version}";
|
tag = "v${version}";
|
||||||
hash = "sha256-0RICNxF8RBHthve69Z9msTg2+jegg5K4aHYRF0YZ8a4=";
|
hash = "sha256-o6/uGbczYp5t6trjFIltZAMSM61adn+BvNb1fBhBSsk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-87JcULH1tAA487VwKVBmXhYTXCdMoYM3gOQTkM53ehE=";
|
patches = [
|
||||||
|
(fetchpatch2 {
|
||||||
|
name = "xrizer-fix-flaky-tests.patch";
|
||||||
|
url = "https://github.com/Supreeeme/xrizer/commit/f58d797e75a8d920982abeaeedee83877dd3c493.diff?full_index=1";
|
||||||
|
hash = "sha256-TI++ZY7QX1iaj3WT0woXApSY2Tairraao5kzF77ewYY=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
cargoHash = "sha256-kXcnD98ZaqRAA3jQvIoWSRC37Uq8l5PUYEzubxfMuUI=";
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkg-config
|
pkg-config
|
||||||
@@ -43,10 +53,18 @@ rustPlatform.buildRustPackage rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir -p $out/lib/xrizer/bin/linux64
|
mkdir -p $out/lib/xrizer/$platformPath
|
||||||
ln -s "$out/lib/libxrizer.so" "$out/lib/xrizer/bin/linux64/vrclient.so"
|
ln -s "$out/lib/libxrizer.so" "$out/lib/xrizer/$platformPath/vrclient.so"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
platformPath =
|
||||||
|
{
|
||||||
|
"aarch64-linux" = "bin/linuxarm64";
|
||||||
|
"i686-linux" = "bin";
|
||||||
|
"x86_64-linux" = "bin/linux64";
|
||||||
|
}
|
||||||
|
."${stdenv.hostPlatform.system}";
|
||||||
|
|
||||||
passthru.updateScript = nix-update-script { };
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
@@ -54,9 +72,10 @@ rustPlatform.buildRustPackage rec {
|
|||||||
homepage = "https://github.com/Supreeeme/xrizer";
|
homepage = "https://github.com/Supreeeme/xrizer";
|
||||||
license = lib.licenses.gpl3Only;
|
license = lib.licenses.gpl3Only;
|
||||||
maintainers = with lib.maintainers; [ Scrumplex ];
|
maintainers = with lib.maintainers; [ Scrumplex ];
|
||||||
# TODO: support more systems
|
platforms = [
|
||||||
# To do so, we need to map systems to the format openvr expects.
|
"x86_64-linux"
|
||||||
# i.e. x86_64-linux -> linux64, aarch64-linux -> linuxarm64
|
"i686-linux"
|
||||||
platforms = [ "x86_64-linux" ];
|
"aarch64-linux"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user