2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-flake8, ament-pep257, launch, launch-ros, python3Packages, rclpy, std-msgs }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-topic-monitor";
|
2024-09-13 14:15:34 +00:00
|
|
|
version = "0.33.5-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-09-13 14:15:34 +00:00
|
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/jazzy/topic_monitor/0.33.5-1.tar.gz";
|
|
|
|
name = "0.33.5-1.tar.gz";
|
|
|
|
sha256 = "a3d6bd9e5a9237072e71d269f6c7c88d3e74aa96b47d5d41000e87d20137c109";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-flake8 ament-pep257 python3Packages.pytest ];
|
2024-05-24 14:00:52 +00:00
|
|
|
propagatedBuildInputs = [ launch launch-ros rclpy std-msgs ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Package containing tools for monitoring ROS 2 topics.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|