2024-09-13 14:15:34 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, rclcpp, rclcpp-action, rcutils, ros-gz-interfaces, sensor-msgs, std-msgs, turtlebot4-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-turtlebot4-gz-toolbox";
|
2024-10-04 13:25:33 +00:00
|
|
|
version = "2.0.1-r1";
|
2024-09-13 14:15:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-10-04 13:25:33 +00:00
|
|
|
url = "https://github.com/ros2-gbp/turtlebot4_simulator-release/archive/release/jazzy/turtlebot4_gz_toolbox/2.0.1-1.tar.gz";
|
|
|
|
name = "2.0.1-1.tar.gz";
|
|
|
|
sha256 = "2e214a45cd3995eb760ebf1a4e7a2e453fa9b9d84f0ceeb5a203ec063d39c5df";
|
2024-09-13 14:15:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ rclcpp rclcpp-action rcutils ros-gz-interfaces sensor-msgs std-msgs turtlebot4-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Turtlebot4 Gazebo Toolbox";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|