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

34 lines
831 B
Nix
Raw Normal View History

2018-05-08 19:53:23 +01:00
{ stdenv, fetchFromGitHub, cmake, libusb, ninja, pkgconfig}:
stdenv.mkDerivation rec {
name = "librealsense-${version}";
version = "2.16.4";
2018-05-08 19:53:23 +01:00
src = fetchFromGitHub {
owner = "IntelRealSense";
repo = "librealsense";
rev = "v${version}";
sha256 = "0664lsdw9a3s3apqiv9kkzfnz86ai9wdc8y00qyxrmxq9lpjsq11";
2018-05-08 19:53:23 +01: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 15:36:56 +01:00
platforms = ["i686-linux" "x86_64-linux" "x86_64-darwin"];
2018-05-08 19:53:23 +01:00
};
}