1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/foxy/image-view/default.nix

26 lines
1.1 KiB
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ 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 }:
buildRosPackage {
pname = "ros-foxy-image-view";
version = "2.2.1-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ boost camera-calibration-parsers cv-bridge image-transport message-filters rclcpp rclcpp-components sensor-msgs std-srvs stereo-msgs ];
nativeBuildInputs = [ ament-cmake-auto ];
meta = {
description = ''A simple viewer for ROS image topics. Includes a specialized viewer
for stereo + disparity images.'';
license = with lib.licenses; [ bsdOriginal ];
};
}