2020-06-12 18:02:43 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, class-loader, rcpputils, rcutils, tinyxml2-vendor }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-pluginlib";
|
2020-12-11 13:16:21 +00:00
|
|
|
version = "2.5.3-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-11 13:16:21 +00:00
|
|
|
url = "https://github.com/ros2-gbp/pluginlib-release/archive/release/foxy/pluginlib/2.5.3-1.tar.gz";
|
|
|
|
name = "2.5.3-1.tar.gz";
|
|
|
|
sha256 = "5c0a830951ab383e38f101a7a7543ac6340335f1f9789d1bb2b03ee831113738";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
|
|
|
propagatedBuildInputs = [ ament-index-cpp class-loader rcpputils rcutils tinyxml2-vendor ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The pluginlib package provides tools for writing and dynamically loading plugins using the ROS build infrastructure.
|
|
|
|
To work, these tools require plugin providers to register their plugins in the package.xml of their package.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|