2020-06-12 18:02:43 -04:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-09-24 13:26:09 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, pluginlib, qt-gui, qt-gui-cpp, qt5, rclcpp }:
|
2020-06-12 18:02:43 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-rqt-gui-cpp";
|
2021-09-24 13:26:09 +00:00
|
|
|
version = "1.1.2-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-09-24 13:26:09 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rqt-release/archive/release/foxy/rqt_gui_cpp/1.1.2-1.tar.gz";
|
|
|
|
name = "1.1.2-1.tar.gz";
|
|
|
|
sha256 = "d1fa25e5c28e68a30851a41d238dc949c1607f49986a936f16937505af200d4b";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake qt5.qtbase ];
|
2021-09-24 13:26:09 +00:00
|
|
|
propagatedBuildInputs = [ pluginlib qt-gui qt-gui-cpp rclcpp ];
|
2020-06-12 18:02:43 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''rqt_gui_cpp enables GUI plugins to use the C++ client library for ROS.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|