mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-27 00:45:34 +03:00
25 lines
1 KiB
Nix
25 lines
1 KiB
Nix
![]() |
|
||
|
# Copyright 2024 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-copyright, python-qt-binding, python3Packages, pythonPackages, qt-gui-py-common, rclpy, rqt-gui, rqt-gui-py, rqt-py-common, std-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-jazzy-rqt-plot";
|
||
|
version = "1.4.0-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/rqt_plot-release/archive/release/jazzy/rqt_plot/1.4.0-2.tar.gz";
|
||
|
name = "1.4.0-2.tar.gz";
|
||
|
sha256 = "dadd78d50076e8d634f85f12178df4ab187289df4a6aa9d688b9e6d761db7e13";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ ament-copyright pythonPackages.pytest ];
|
||
|
propagatedBuildInputs = [ python-qt-binding python3Packages.catkin-pkg python3Packages.matplotlib python3Packages.numpy qt-gui-py-common rclpy 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 ];
|
||
|
};
|
||
|
}
|