mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
686 B
Nix
23 lines
686 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, pkg-config, libusb1, libjpeg, cmake }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-libuvc";
|
||
|
version = "0.0.6";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-drivers-gbp/libuvc-release/archive/release/melodic/libuvc/0.0.6-0.tar.gz;
|
||
|
sha256 = "06a553e6d043735a10fff606d5f71a20661fc9b6be392b69a06c35b8aca8d3f6";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ libusb1 catkin libjpeg ];
|
||
|
nativeBuildInputs = [ libusb1 cmake libjpeg pkg-config ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''USB Video Class driver library'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|