mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
27 lines
1.2 KiB
Nix
27 lines
1.2 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, ament-lint-auto, ament-lint-common, class-loader, rcpputils, rcutils, tinyxml2-vendor }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-pluginlib";
|
|
version = "5.6.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/pluginlib-release/archive/release/rolling/pluginlib/5.6.0-1.tar.gz";
|
|
name = "5.6.0-1.tar.gz";
|
|
sha256 = "cdb0ff0d425c4a544521731f622ecabada4dc01ac97c26b910b5554a556f4d3d";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
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 ];
|
|
};
|
|
}
|