2024-05-10 13:12:06 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-10 13:12:06 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-07-26 13:34:25 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-cmake-python, ament-lint-auto, ament-lint-common, gazebo-planar-move-plugin, joint-state-publisher-gui, launch, launch-pal, launch-param-builder, launch-ros, launch-testing-ament-cmake, pal-urdf-utils, realsense2-description, rviz2, urdf-test, xacro }:
|
2024-05-10 13:12:06 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-omni-base-description";
|
2024-11-08 14:09:31 +00:00
|
|
|
version = "2.4.1-r1";
|
2024-05-10 13:12:06 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-08 14:09:31 +00:00
|
|
|
url = "https://github.com/pal-gbp/omni_base_robot-release/archive/release/humble/omni_base_description/2.4.1-1.tar.gz";
|
|
|
|
name = "2.4.1-1.tar.gz";
|
|
|
|
sha256 = "53dcfc837ed002a20443ff71cbe2eb7d1957b30fc8029467e70c333342db173c";
|
2024-05-10 13:12:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-auto ament-cmake-python ];
|
2024-07-26 13:34:25 +00:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common launch-testing-ament-cmake urdf-test ];
|
|
|
|
propagatedBuildInputs = [ gazebo-planar-move-plugin joint-state-publisher-gui launch launch-pal launch-param-builder launch-ros pal-urdf-utils realsense2-description rviz2 xacro ];
|
2024-05-10 13:12:06 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake-auto ament-cmake-python ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "This package contains the description (mechanical, kinematic, visual,
|
|
|
|
etc.) of the omni_base robot. The files in this package are parsed and used by
|
|
|
|
a variety of other components. Most users will not interact directly
|
|
|
|
with this package.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|