2020-12-25 13:15:54 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-12-25 13:15:54 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-02-05 13:08:14 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-lint-auto, ament-lint-common, control-msgs, pluginlib, rcpputils, rcutils, ros2-control-test-assets, tinyxml2-vendor }:
|
2020-12-25 13:15:54 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-hardware-interface";
|
2021-06-25 12:45:04 +00:00
|
|
|
version = "0.7.1-r1";
|
2020-12-25 13:15:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-25 12:45:04 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/foxy/hardware_interface/0.7.1-1.tar.gz";
|
|
|
|
name = "0.7.1-1.tar.gz";
|
|
|
|
sha256 = "fc3fc74344107335b7e7f45455e938ba5a8d22e6f2ea4e38ba88b62bb414e474";
|
2020-12-25 13:15:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2021-02-05 13:08:14 +00:00
|
|
|
checkInputs = [ ament-cmake-gmock ament-lint-auto ament-lint-common ros2-control-test-assets ];
|
2020-12-25 13:15:54 +00:00
|
|
|
propagatedBuildInputs = [ control-msgs pluginlib rcpputils rcutils tinyxml2-vendor ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ROS2 ros_control hardware interface'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|