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/rqt-console/default.nix

24 lines
927 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-index-python, python-qt-binding, rcl-interfaces, rclpy, rqt-gui, rqt-gui-py, rqt-py-common }:
buildRosPackage {
pname = "ros-foxy-rqt-console";
version = "1.1.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt_console-release/archive/release/foxy/rqt_console/1.1.1-1.tar.gz";
name = "1.1.1-1.tar.gz";
sha256 = "f5a82fc3756f1e06c789139378fa3de968ca02f29d54bd46bac747bd4a3b13fa";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ ament-index-python python-qt-binding rcl-interfaces rclpy rqt-gui rqt-gui-py rqt-py-common ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''rqt_console provides a GUI plugin for displaying and filtering ROS messages.'';
license = with lib.licenses; [ bsdOriginal ];
};
}