mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
925 B
Nix
24 lines
925 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, diagnostic-msgs, python-qt-binding, pythonPackages, qt-gui, rospy, rqt-gui, rqt-gui-py }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-rqt-runtime-monitor";
|
|
version = "0.5.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/rqt_runtime_monitor-release/archive/release/melodic/rqt_runtime_monitor/0.5.7-0.tar.gz";
|
|
name = "0.5.7-0.tar.gz";
|
|
sha256 = "f58958b5649d59fca3022a1771e6a457382744c616835cc65980213ab742fd5c";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ diagnostic-msgs python-qt-binding pythonPackages.rospkg qt-gui rospy rqt-gui rqt-gui-py ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''rqt_runtime_monitor provides a GUI plugin viewing DiagnosticsArray messages.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|