47 lines
1 KiB
Nix
47 lines
1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
libusb1,
|
|
hidapi,
|
|
opencv,
|
|
cmake,
|
|
pkg-config,
|
|
fetchFromGitHub,
|
|
withExamples ? false,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "zed-open-capture";
|
|
version = "0.5.0-unstable-2023-24-19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stereolabs";
|
|
repo = "zed-open-capture";
|
|
rev = "5cf66ff777175776451b9b59ecc6231d730fa202";
|
|
sha256 = "sha256-ZjgJkCRbvLT7jjOcA8REiEpTg0Jh57du2aMwRk/OKLI=";
|
|
};
|
|
|
|
buildInputs = [
|
|
libusb1
|
|
hidapi
|
|
opencv
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
# all but one example require opencv with UI support, so disable it.
|
|
# The input OpenCV can be overriden with (opencv.override { enableGtk3 = true; })
|
|
cmakeFlags = lib.optionals (!withExamples) [
|
|
"-DBUILD_EXAMPLES=OFF"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Platform-agnostic camera and sensor capture API for the ZED 2, ZED 2i, and ZED Mini stereo cameras";
|
|
homepage = "https://github.com/stereolabs/zed-open-capture";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ marius851000 ];
|
|
};
|
|
}
|