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

34 lines
821 B
Nix
Raw Normal View History

2018-05-08 18:53:23 +00:00
{ stdenv, fetchFromGitHub, cmake, libusb, ninja, pkgconfig}:
stdenv.mkDerivation rec {
pname = "librealsense";
version = "2.25.0";
2018-05-08 18:53:23 +00:00
src = fetchFromGitHub {
owner = "IntelRealSense";
repo = "librealsense";
rev = "v${version}";
sha256 = "029qps0bbck0m2xj0mb5g3pgkk7a1zq8wcilfkvpx72sn7039xvw";
2018-05-08 18:53:23 +00:00
};
buildInputs = [
libusb
];
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;
license = licenses.asl20;
maintainers = with maintainers; [ brian-dawn ];
2018-08-09 14:36:56 +00:00
platforms = ["i686-linux" "x86_64-linux" "x86_64-darwin"];
2018-05-08 18:53:23 +00:00
};
}