1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/rqt-console/default.nix

25 lines
941 B
Nix
Raw Normal View History

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