2020-05-23 15:15:06 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, class-loader, cmake-modules, rosconsole, roslib, tinyxml-2 }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-pluginlib";
|
|
|
|
version = "1.13.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros-gbp/pluginlib-release/archive/release/noetic/pluginlib/1.13.0-1.tar.gz";
|
|
|
|
name = "1.13.0-1.tar.gz";
|
|
|
|
sha256 = "0601378fa3e4471c7e995df4d4ccfc0e03fece47661e15df6ae83ce4fb62d74f";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin cmake-modules ];
|
2020-05-23 15:15:06 -04:00
|
|
|
propagatedBuildInputs = [ boost class-loader rosconsole roslib tinyxml-2 ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
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.";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|