2023-07-28 13:37:31 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-07-28 13:37:31 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, joint-state-publisher, joint-state-publisher-gui, joint-trajectory-controller, picknik-reset-fault-controller, picknik-twist-controller, robot-state-publisher, robotiq-description, rviz2 }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-kortex-description";
|
2023-08-12 01:44:44 +00:00
|
|
|
version = "0.2.2-r1";
|
2023-07-28 13:37:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-08-12 01:44:44 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_kortex-release/archive/release/iron/kortex_description/0.2.2-1.tar.gz";
|
|
|
|
name = "0.2.2-1.tar.gz";
|
|
|
|
sha256 = "5894dc1258da238675ea62284661dd827b973e9e26a295f5545cd8b35ed515fd";
|
2023-07-28 13:37:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ joint-state-publisher joint-state-publisher-gui joint-trajectory-controller picknik-reset-fault-controller picknik-twist-controller robot-state-publisher robotiq-description rviz2 ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "<p>URDF and xacro description package for Kortex robots</p>
|
2023-07-28 13:37:31 +00:00
|
|
|
<p>This package contains configuration data, 3D models and launch files
|
2024-03-23 14:09:26 +00:00
|
|
|
for Kortex arms and supported grippers</p>";
|
2023-07-28 13:37:31 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|