1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/eloquent/pluginlib/default.nix

28 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, tinyxml2-vendor, rcutils, ament-cmake, class-loader, ament-index-cpp, ament-cmake-gtest }:
buildRosPackage {
pname = "ros-eloquent-pluginlib";
version = "2.4.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/pluginlib-release/archive/release/eloquent/pluginlib/2.4.1-1.tar.gz";
name = "2.4.1-1.tar.gz";
sha256 = "c604673d688246c6d5a8ec99d77a4c76d25b15d68b8f1e4a2e281935d154fd49";
};
buildType = "ament_cmake";
buildInputs = [ ament-index-cpp tinyxml2-vendor rcutils class-loader ];
checkInputs = [ ament-cmake-gtest ];
propagatedBuildInputs = [ ament-index-cpp tinyxml2-vendor rcutils class-loader ];
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 ];
};
}