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/dashing/topic-monitor/default.nix

25 lines
845 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-dashing-topic-monitor";
version = "0.7.9-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/dashing/topic_monitor/0.7.9-1.tar.gz";
name = "0.7.9-1.tar.gz";
sha256 = "f70fb654734e17de351861325de4490dee136457934dbd7eb256a4640c32d9f0";
};
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 ];
};
}