mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
36 lines
849 B
Nix
36 lines
849 B
Nix
{ stdenv, fetchFromGitHub, cmake, libusb1, ninja, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "librealsense";
|
|
version = "2.34.0";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "IntelRealSense";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0bi7pszrryz18aqna0z73mb1hzz2vqdb0m00pf93hnwc2hba7hwm";
|
|
};
|
|
|
|
buildInputs = [
|
|
libusb1
|
|
];
|
|
|
|
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 ];
|
|
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
|
|
};
|
|
}
|