mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 10:14:50 +03:00
24 lines
1 KiB
Nix
24 lines
1 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-pep257, diagnostic-msgs, python-qt-binding, python3Packages, qt-gui, rclpy, rqt-gui, rqt-gui-py }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-rqt-runtime-monitor";
|
|
version = "1.0.0-r4";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rqt_runtime_monitor-release/archive/release/rolling/rqt_runtime_monitor/1.0.0-4.tar.gz";
|
|
name = "1.0.0-4.tar.gz";
|
|
sha256 = "ac39d7a2088c182e46169662e72eddf6ceff9c9b8c5581271e7a241cca6ae4a2";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
|
|
propagatedBuildInputs = [ ament-index-python diagnostic-msgs python-qt-binding python3Packages.rospkg qt-gui rclpy rqt-gui rqt-gui-py ];
|
|
|
|
meta = {
|
|
description = "rqt_runtime_monitor provides a GUI plugin viewing DiagnosticsArray messages.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|