mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-22 07:00:17 +03:00
24 lines
1.1 KiB
Nix
24 lines
1.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.7-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ros2cli-release/archive/release/dashing/ros2component/0.7.7-1.tar.gz";
|
|
name = "0.7.7-1.tar.gz";
|
|
sha256 = "ebc06c3ba04f5251f08e6f9770a1e7878683c72385a0a3749ef21c442607e6aa";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|