1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-09 19:55:19 +03:00
nix-ros-overlay/distros/jazzy/rqt-plot/default.nix

25 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, python-qt-binding, python3Packages, qt-gui-py-common, rclpy, rosidl-runtime-py, rqt-gui, rqt-gui-py, rqt-py-common, std-msgs }:
buildRosPackage {
pname = "ros-jazzy-rqt-plot";
version = "1.4.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt_plot-release/archive/release/jazzy/rqt_plot/1.4.2-1.tar.gz";
name = "1.4.2-1.tar.gz";
sha256 = "5986df27724d82b1e79074a79b9aed0ec034dce1a985dd27d91b176b5206cec9";
};
buildType = "ament_python";
checkInputs = [ ament-copyright python3Packages.pytest ];
propagatedBuildInputs = [ python-qt-binding python3Packages.catkin-pkg python3Packages.matplotlib python3Packages.numpy qt-gui-py-common rclpy rosidl-runtime-py rqt-gui rqt-gui-py rqt-py-common std-msgs ];
meta = {
description = "rqt_plot provides a GUI plugin visualizing numeric values in a 2D plot using different plotting backends.";
license = with lib.licenses; [ bsdOriginal ];
};
}