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

25 lines
850 B
Nix
Raw Normal View History

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