mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
876 B
Nix
23 lines
876 B
Nix
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, 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.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rqt_console-release/archive/release/foxy/rqt_console/1.1.2-1.tar.gz";
|
|
name = "1.1.2-1.tar.gz";
|
|
sha256 = "e30be415ef6ffa55d20c4da0230ac456b9677cdb9dbc79a46a7fc34e983a22f0";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
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 ];
|
|
};
|
|
}
|