mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
1.1 KiB
Nix
23 lines
1.1 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, cmake-modules, boost, cob-vision-utils, image-transport, sensor-msgs, cv-bridge, message-filters, tinyxml, polled-camera, catkin, message-generation, message-runtime, rospy, roscpp, opencv3 }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-cob-camera-sensors";
|
|
version = "0.6.13";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ipa320/cob_driver-release/archive/release/kinetic/cob_camera_sensors/0.6.13-0.tar.gz;
|
|
sha256 = "ab8ab08520bfbdc8b443d05bee48e41300831475ab91fd30c8b3f4b7cf5e84d6";
|
|
};
|
|
|
|
buildInputs = [ boost cmake-modules cob-vision-utils image-transport sensor-msgs cv-bridge message-filters tinyxml polled-camera message-generation roscpp opencv3 ];
|
|
propagatedBuildInputs = [ boost cmake-modules cob-vision-utils image-transport sensor-msgs cv-bridge message-filters tinyxml polled-camera message-runtime rospy roscpp opencv3 ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''For more information read the readme.htm file located in'';
|
|
#license = lib.licenses.Apache 2.0;
|
|
};
|
|
}
|