Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
85 lines
1.5 KiB
Nix
85 lines
1.5 KiB
Nix
{
|
|
config,
|
|
autoPatchelfHook,
|
|
boost,
|
|
bzip2,
|
|
cereal,
|
|
cmake,
|
|
eigen,
|
|
extra-cmake-modules,
|
|
fetchFromGitLab,
|
|
fmt,
|
|
freeglut,
|
|
glew,
|
|
lib,
|
|
libepoxy,
|
|
libGL,
|
|
lz4,
|
|
magic-enum,
|
|
nix-update-script,
|
|
opencv,
|
|
pkg-config,
|
|
stdenv,
|
|
onetbb,
|
|
xorg,
|
|
cudaPackages,
|
|
enableCuda ? config.cudaSupport,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "basalt-monado";
|
|
version = "0-unstable-2025-09-25";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "mateosss";
|
|
repo = "basalt";
|
|
rev = "5337898271f5c2ce523258e93e80fd870130be31";
|
|
hash = "sha256-IoXZlXyOc5y9aSHBU3WCNhHi4L9xzHmbv6VMEvX2ZeE=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
cmake
|
|
extra-cmake-modules
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
bzip2
|
|
cereal
|
|
eigen
|
|
fmt
|
|
freeglut
|
|
glew
|
|
libepoxy
|
|
libGL
|
|
lz4
|
|
magic-enum
|
|
opencv.cxxdev
|
|
onetbb
|
|
xorg.libX11
|
|
]
|
|
++ lib.optionals enableCuda [
|
|
cudaPackages.cuda_nvcc
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "BASALT_INSTANTIATIONS_DOUBLE" false)
|
|
(lib.cmakeBool "BUILD_TESTS" false)
|
|
(lib.cmakeFeature "EIGEN_ROOT" "${eigen}/include/eigen3")
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Fork of Basalt improved for tracking XR devices with Monado";
|
|
homepage = "https://gitlab.freedesktop.org/mateosss/basalt";
|
|
license = lib.licenses.bsd3;
|
|
mainProgram = "basalt_vio";
|
|
maintainers = [ lib.maintainers.locochoco ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|