2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, python3Packages, pythonPackages, ros2cli }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ros2multicast";
|
2024-08-02 13:27:09 +00:00
|
|
|
version = "0.34.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-02 13:27:09 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2cli-release/archive/release/rolling/ros2multicast/0.34.1-1.tar.gz";
|
|
|
|
name = "0.34.1-1.tar.gz";
|
|
|
|
sha256 = "40d412ee1346e203fc910e3f1b21aaab70d90d463d4b2b9a00eb6c3cb2cfbc08";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint python3Packages.pytest-timeout pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ ros2cli ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The multicast command for ROS 2 command line tools.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|