2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, launch, launch-ros, launch-testing, launch-testing-ros, python3Packages, rcl-interfaces, rclpy, ros2cli, ros2node, ros2service }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-ros2param";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "0.32.2-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2cli-release/archive/release/jazzy/ros2param/0.32.2-1.tar.gz";
|
|
|
|
name = "0.32.2-1.tar.gz";
|
|
|
|
sha256 = "05670dd7a0d80b0d2d9ac052af5f8778855ffa9152ee40381dcd24763d10b5ec";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint launch launch-ros launch-testing launch-testing-ros python3Packages.pytest python3Packages.pytest-timeout ];
|
2024-05-24 14:00:52 +00:00
|
|
|
propagatedBuildInputs = [ rcl-interfaces rclpy ros2cli ros2node ros2service ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The param command for ROS 2 command line tools.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|