2020-06-12 18:02:43 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-09-09 15:37:07 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, ament-lint-common, boost, camera-calibration-parsers, cv-bridge, image-transport, message-filters, rclcpp, rclcpp-components, sensor-msgs, std-srvs, stereo-msgs }:
|
2020-06-12 18:02:43 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-image-view";
|
2020-09-09 15:37:07 -04:00
|
|
|
version = "2.2.1-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-09-09 15:37:07 -04:00
|
|
|
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/foxy/image_view/2.2.1-1.tar.gz";
|
|
|
|
name = "2.2.1-1.tar.gz";
|
|
|
|
sha256 = "3d8f99ff5ad18e736a61ba58bc0c9c01b4ccc1c8dd4fe21b4f63df4a89ec5f20";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2020-07-31 13:40:46 +00:00
|
|
|
propagatedBuildInputs = [ boost camera-calibration-parsers cv-bridge image-transport message-filters rclcpp rclcpp-components sensor-msgs std-srvs stereo-msgs ];
|
2020-09-09 15:37:07 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A simple viewer for ROS image topics. Includes a specialized viewer
|
|
|
|
for stereo + disparity images.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|