2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, xacro }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-moveit-resources-prbt-support";
|
2025-04-25 13:38:11 +00:00
|
|
|
version = "2.13.2-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-04-25 13:38:11 +00:00
|
|
|
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_resources_prbt_support/2.13.2-1.tar.gz";
|
|
|
|
name = "2.13.2-1.tar.gz";
|
|
|
|
sha256 = "0f79e4c8f256e24932f5af59fcd596a61df3cab81181662e09d86c6db23952e1";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ xacro ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Mechanical, kinematic and visual description
|
|
|
|
of the Pilz light weight arm PRBT.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|