mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-25 08:15:32 +03:00
24 lines
1 KiB
Nix
24 lines
1 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-xmllint, ament-flake8, ros2node, rclpy, composition-interfaces, pythonPackages, ros2param, ament-pep257, rcl-interfaces, ament-copyright, ament-index-python, rclcpp-components, ros2pkg, ros2cli }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-ros2component";
|
||
|
version = "0.7.4-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros2-gbp/ros2cli-release/archive/release/dashing/ros2component/0.7.4-1.tar.gz;
|
||
|
sha256 = "3d912968bcd9aa4c3f94d54c8f2448e83422db3072c2fe4bfc937033b0c8653a";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ ament-xmllint ament-flake8 pythonPackages.pytest ament-pep257 ament-copyright ];
|
||
|
propagatedBuildInputs = [ ros2node rclpy composition-interfaces ros2param rcl-interfaces ros2pkg ament-index-python rclcpp-components ros2cli ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The component command for ROS 2 command line tools.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|