1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/iron/topic-monitor/default.nix

24 lines
840 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-flake8, ament-pep257, launch, launch-ros, pythonPackages, rclpy, std-msgs }:
buildRosPackage {
pname = "ros-iron-topic-monitor";
version = "0.27.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/iron/topic_monitor/0.27.2-1.tar.gz";
name = "0.27.2-1.tar.gz";
sha256 = "fb8365fa8d9ec39a6fb81ddfb41517082b4a568ed83a210536ad3a6f4092cbc8";
};
buildType = "ament_python";
checkInputs = [ ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ launch launch-ros rclpy std-msgs ];
meta = {
description = "Package containing tools for monitoring ROS 2 topics.";
license = with lib.licenses; [ asl20 ];
};
}