1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/rqt-runtime-monitor/default.nix

23 lines
853 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rqt-gui-py, rqt-gui, catkin, pythonPackages, qt-gui, rospy, diagnostic-msgs, python-qt-binding }:
buildRosPackage {
pname = "ros-kinetic-rqt-runtime-monitor";
version = "0.5.7";
src = fetchurl {
url = https://github.com/ros-gbp/rqt_runtime_monitor-release/archive/release/kinetic/rqt_runtime_monitor/0.5.7-0.tar.gz;
sha256 = "45cf250ce885a50ea9aaa0fc2570ea86493fd642f183476375dc2a9e62b57822";
};
propagatedBuildInputs = [ rqt-gui-py qt-gui rospy pythonPackages.rospkg diagnostic-msgs rqt-gui python-qt-binding ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''rqt_runtime_monitor provides a GUI plugin viewing DiagnosticsArray messages.'';
#license = lib.licenses.BSD;
};
}