nixpkgs/pkgs/development/libraries/librealsense/default.nix

36 lines
849 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, libusb1, ninja, pkgconfig }:
2018-05-08 20:53:23 +02:00
stdenv.mkDerivation rec {
pname = "librealsense";
2020-04-01 16:33:48 +02:00
version = "2.33.1";
outputs = [ "out" "dev" ];
2018-05-08 20:53:23 +02:00
src = fetchFromGitHub {
owner = "IntelRealSense";
repo = pname;
2018-05-08 20:53:23 +02:00
rev = "v${version}";
2020-04-01 16:33:48 +02:00
sha256 = "04macplj3k2sdpf1wdjm6gsghak5dzfhi2pmr47qldh2sy2zz0a3";
2018-05-08 20:53:23 +02:00
};
buildInputs = [
libusb1
2018-05-08 20:53:23 +02:00
];
nativeBuildInputs = [
cmake
ninja
pkgconfig
];
cmakeFlags = [ "-DBUILD_EXAMPLES=false" ];
meta = with stdenv.lib; {
description = "A cross-platform library for Intel® RealSense depth cameras (D400 series and the SR300)";
homepage = "https://github.com/IntelRealSense/librealsense";
2018-05-08 20:53:23 +02:00
license = licenses.asl20;
maintainers = with maintainers; [ brian-dawn ];
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
2018-05-08 20:53:23 +02:00
};
}