mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, class-loader, rcutils, tinyxml2-vendor }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-pluginlib";
|
|
version = "2.4.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/pluginlib-release/archive/release/eloquent/pluginlib/2.4.2-1.tar.gz";
|
|
name = "2.4.2-1.tar.gz";
|
|
sha256 = "82c6af8de436074434274c51049d7eb5ff6e534a464d39b4742cda8042f11a54";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-cmake-gtest ];
|
|
propagatedBuildInputs = [ ament-index-cpp class-loader 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 ];
|
|
};
|
|
}
|