librealsense: 2.25.0 -> 2.29.0 (#69657)

* librealsense: 2.25.0 -> 2.28.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/librealsense/versions

* librealsense: 2.28.0 -> 2.29.0
+ split libs and includes into multiple outputs
+ use libusb 1.x and not libusb-compat
This commit is contained in:
R. RyanTM 2019-11-29 12:35:06 -08:00 committed by Renaud
parent 4b5558b7dd
commit 1585c230be

View File

@ -1,18 +1,20 @@
{ stdenv, fetchFromGitHub, cmake, libusb, ninja, pkgconfig}:
{ stdenv, fetchFromGitHub, cmake, libusb1, ninja, pkgconfig }:
stdenv.mkDerivation rec {
pname = "librealsense";
version = "2.25.0";
version = "2.29.0";
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
owner = "IntelRealSense";
repo = "librealsense";
repo = pname;
rev = "v${version}";
sha256 = "029qps0bbck0m2xj0mb5g3pgkk7a1zq8wcilfkvpx72sn7039xvw";
sha256 = "0wrg1c4fcd5ky96hmnczg9izfgd0yxls8ghxxzrdvgdlg269f443";
};
buildInputs = [
libusb
libusb1
];
nativeBuildInputs = [
@ -25,9 +27,9 @@ stdenv.mkDerivation rec {
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;
homepage = "https://github.com/IntelRealSense/librealsense";
license = licenses.asl20;
maintainers = with maintainers; [ brian-dawn ];
platforms = ["i686-linux" "x86_64-linux" "x86_64-darwin"];
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
};
}