2020-05-23 15:15:06 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 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";
|
2025-04-11 13:54:49 +00:00
|
|
|
version = "1.13.1-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-04-11 13:54:49 +00:00
|
|
|
url = "https://github.com/ros-gbp/pluginlib-release/archive/release/noetic/pluginlib/1.13.1-1.tar.gz";
|
|
|
|
name = "1.13.1-1.tar.gz";
|
|
|
|
sha256 = "e6893821b8ab839fcd004f064019f8a59f187dd6ad5a0e9dee57de25fd01b63c";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|