mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
985 B
Nix
26 lines
985 B
Nix
![]() |
|
||
|
# Copyright 2021 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, cv-bridge, geometry-msgs, image-transport, qt-gui-cpp, qt5, rclcpp, rqt-gui, rqt-gui-cpp, sensor-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-galactic-rqt-image-view";
|
||
|
version = "1.1.1-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/rqt_image_view-release/archive/release/galactic/rqt_image_view/1.1.1-2.tar.gz";
|
||
|
name = "1.1.1-2.tar.gz";
|
||
|
sha256 = "c0b939e88ae8c627fc460d8147c8672c93efa87e0c6b4932e1ecf7502397a8b1";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ qt5.qtbase ];
|
||
|
propagatedBuildInputs = [ cv-bridge geometry-msgs image-transport qt-gui-cpp rclcpp rqt-gui rqt-gui-cpp sensor-msgs ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''rqt_image_view provides a GUI plugin for displaying images using image_transport.'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|