mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00
24 lines
993 B
Nix
24 lines
993 B
Nix
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, controller-manager, controller-manager-msgs, rclpy, ros2cli, ros2node, ros2param, rosidl-runtime-py }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-ros2controlcli";
|
|
version = "0.10.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/foxy/ros2controlcli/0.10.0-1.tar.gz";
|
|
name = "0.10.0-1.tar.gz";
|
|
sha256 = "7d38e4418d13eecccd31d7c97846acd617d7e8242e68ea40bd4936dd1ee45aeb";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint ];
|
|
propagatedBuildInputs = [ controller-manager controller-manager-msgs rclpy ros2cli ros2node ros2param rosidl-runtime-py ];
|
|
|
|
meta = {
|
|
description = ''The ROS 2 command line tools for ROS2 Control.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|