mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, class-loader, tinyxml2-vendor, ament-index-cpp, rcutils }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-crystal-pluginlib";
|
||
|
version = "2.2.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros2-gbp/pluginlib-release/archive/release/crystal/pluginlib/2.2.1-0.tar.gz;
|
||
|
sha256 = "f520bff44d60282657c97f75a9eee211d9e49e0ed605450997a0155f774adbaf";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ class-loader tinyxml2-vendor rcutils ament-index-cpp ];
|
||
|
checkInputs = [ ament-cmake-gtest ];
|
||
|
propagatedBuildInputs = [ class-loader tinyxml2-vendor rcutils ament-index-cpp ];
|
||
|
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 ];
|
||
|
};
|
||
|
}
|