mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
27 lines
1.1 KiB
Nix
27 lines
1.1 KiB
Nix
|
|
# Copyright 2024 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, rcpputils, rcutils, tinyxml2-vendor }:
|
|
buildRosPackage {
|
|
pname = "ros-iron-pluginlib";
|
|
version = "5.2.2-r3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/pluginlib-release/archive/release/iron/pluginlib/5.2.2-3.tar.gz";
|
|
name = "5.2.2-3.tar.gz";
|
|
sha256 = "2459c12ea8790c7c2fdda4bc1d98fa794c42f0e339b66653a4171e087aab5783";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-cmake-gtest ];
|
|
propagatedBuildInputs = [ ament-index-cpp class-loader rcpputils 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 ];
|
|
};
|
|
}
|