mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
7c2572e5cf
Co-authored-by: Justinas Stankevicius <justinas@justinas.org>
155 lines
2.9 KiB
Nix
155 lines
2.9 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
substituteAll,
|
|
nix-update-script,
|
|
pkg-config,
|
|
autoAddDriverRunpath,
|
|
alsa-lib,
|
|
brotli,
|
|
bzip2,
|
|
celt,
|
|
ffmpeg,
|
|
jack2,
|
|
lame,
|
|
libX11,
|
|
libXi,
|
|
libXrandr,
|
|
libXcursor,
|
|
libdrm,
|
|
libglvnd,
|
|
libogg,
|
|
libpng,
|
|
libtheora,
|
|
libunwind,
|
|
libva,
|
|
libvdpau,
|
|
libxkbcommon,
|
|
openssl,
|
|
openvr,
|
|
pipewire,
|
|
rust-cbindgen,
|
|
soxr,
|
|
vulkan-headers,
|
|
vulkan-loader,
|
|
wayland,
|
|
x264,
|
|
xvidcore,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "alvr";
|
|
version = "20.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alvr-org";
|
|
repo = "ALVR";
|
|
rev = "refs/tags/v${version}";
|
|
fetchSubmodules = true; #TODO devendor openvr
|
|
hash = "sha256-zqeh9U0A/KHlRieq9Lf+7f04K3JG/vpE2gZ916ReXLc=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"openxr-0.19.0" = "sha256-bnMSjJh+zjLw4Pdxr7LLm6qYAJOK7hz5xORKZ2pVcGw=";
|
|
"settings-schema-0.2.0" = "sha256-luEdAKDTq76dMeo5kA+QDTHpRMFUg3n0qvyQ7DkId0k=";
|
|
};
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-finding-libs.patch;
|
|
ffmpeg = lib.getDev ffmpeg;
|
|
x264 = lib.getDev x264;
|
|
})
|
|
];
|
|
|
|
env = {
|
|
NIX_CFLAGS_COMPILE = toString [
|
|
"-lbrotlicommon"
|
|
"-lbrotlidec"
|
|
"-lcrypto"
|
|
"-lpng"
|
|
"-lssl"
|
|
];
|
|
};
|
|
|
|
RUSTFLAGS = map (a: "-C link-arg=${a}") [
|
|
"-Wl,--push-state,--no-as-needed"
|
|
"-lEGL"
|
|
"-lwayland-client"
|
|
"-lxkbcommon"
|
|
"-Wl,--pop-state"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
rust-cbindgen
|
|
pkg-config
|
|
rustPlatform.bindgenHook
|
|
autoAddDriverRunpath
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
brotli
|
|
bzip2
|
|
celt
|
|
ffmpeg
|
|
jack2
|
|
lame
|
|
libX11
|
|
libXcursor
|
|
libXi
|
|
libXrandr
|
|
libdrm
|
|
libglvnd
|
|
libogg
|
|
libpng
|
|
libtheora
|
|
libunwind
|
|
libva
|
|
libvdpau
|
|
libxkbcommon
|
|
openssl
|
|
openvr
|
|
pipewire
|
|
soxr
|
|
vulkan-headers
|
|
vulkan-loader
|
|
wayland
|
|
x264
|
|
xvidcore
|
|
];
|
|
|
|
postBuild = ''
|
|
# Build SteamVR driver ("streamer")
|
|
cargo xtask build-streamer --release
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm755 ${src}/alvr/xtask/resources/alvr.desktop $out/share/applications/alvr.desktop
|
|
install -Dm644 ${src}/resources/alvr.png $out/share/icons/hicolor/256x256/apps/alvr.png
|
|
|
|
# Install SteamVR driver
|
|
mkdir -p $out/{libexec,lib/alvr,share}
|
|
cp -r ./build/alvr_streamer_linux/lib64/. $out/lib
|
|
cp -r ./build/alvr_streamer_linux/libexec/. $out/libexec
|
|
cp -r ./build/alvr_streamer_linux/share/. $out/share
|
|
ln -s $out/lib $out/lib64
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Stream VR games from your PC to your headset via Wi-Fi";
|
|
homepage = "https://github.com/alvr-org/ALVR/";
|
|
changelog = "https://github.com/alvr-org/ALVR/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
mainProgram = "alvr_dashboard";
|
|
maintainers = with maintainers; [ passivelemon ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|