2024-10-04 13:25:33 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-10-04 13:25:33 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-03-14 13:29:43 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, franka-description, kortex-description, robot-state-publisher, robotiq-description, ur-description, urdf, xacro }:
|
2024-10-04 13:25:33 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-clearpath-manipulators-description";
|
2025-04-25 13:38:11 +00:00
|
|
|
version = "1.3.2-r1";
|
2024-10-04 13:25:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-04-25 13:38:11 +00:00
|
|
|
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/humble/clearpath_manipulators_description/1.3.2-1.tar.gz";
|
|
|
|
name = "1.3.2-1.tar.gz";
|
|
|
|
sha256 = "aa627d20fcfb79fe8657fe2ff865fe07f1a2448ecc319992f92bfe0dd59f96a8";
|
2024-10-04 13:25:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2025-03-14 13:29:43 +00:00
|
|
|
propagatedBuildInputs = [ franka-description kortex-description robot-state-publisher robotiq-description ur-description urdf xacro ];
|
2024-10-04 13:25:33 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Clearpath manipulator URDF descriptions";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|