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

25 lines
848 B
Nix
Raw Normal View History

# 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-rolling-topic-monitor";
version = "0.32.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/rolling/topic_monitor/0.32.1-1.tar.gz";
name = "0.32.1-1.tar.gz";
sha256 = "b9d2c9989e22b4bcff689f01996a5068efcf2f0e5932407e65b46689b588ebff";
};
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 ];
};
}