Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
883 B
Nix

{
lib,
stdenv,
cmake,
fetchFromGitHub,
opencv4,
}:
stdenv.mkDerivation {
pname = "opentrack-aruco";
version = "unstable-20190303";
src = fetchFromGitHub {
owner = "opentrack";
repo = "aruco";
rev = "12dc60efd61149227bd05c805208d9bcce308f6d";
sha256 = "0gkrixgfbpg8pls4qqilphbz4935mg5z4p18a0vv6kclmfccw9ad";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ opencv4 ];
env.NIX_CFLAGS_COMPILE = "-Wall -Wextra -Wpedantic -ffast-math -O3";
preInstall = ''
mkdir -p $out/include/aruco
'';
# copy headers required by main package
postInstall = ''
cp $src/src/*.h $out/include/aruco
'';
meta = with lib; {
homepage = "https://github.com/opentrack/aruco";
description = "C++ library for detection of AR markers based on OpenCV";
license = licenses.isc;
maintainers = with maintainers; [ zaninime ];
};
}