1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00
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 19:53:23 +01:00
stdenv.mkDerivation rec {
pname = "librealsense";
version = "2.29.0";
outputs = [ "out" "dev" ];
2018-05-08 19:53:23 +01:00
src = fetchFromGitHub {
owner = "IntelRealSense";
repo = pname;
2018-05-08 19:53:23 +01:00
rev = "v${version}";
sha256 = "0wrg1c4fcd5ky96hmnczg9izfgd0yxls8ghxxzrdvgdlg269f443";
2018-05-08 19:53:23 +01:00
};
buildInputs = [
libusb1
2018-05-08 19:53:23 +01: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 19:53:23 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ brian-dawn ];
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
2018-05-08 19:53:23 +01:00
};
}