2023-03-17 13:53:56 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2023-03-17 13:53:56 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-07-26 13:34:25 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, chrony, curl, networkmanager, rmw-cyclonedds-cpp, rmw-fastrtps-cpp, robot-upstart, simple-term-menu-vendor }:
|
2023-03-17 13:53:56 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-turtlebot4-setup";
|
2025-03-07 13:16:24 +00:00
|
|
|
version = "1.0.6-r1";
|
2023-03-17 13:53:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-03-07 13:16:24 +00:00
|
|
|
url = "https://github.com/ros2-gbp/turtlebot4_setup-release/archive/release/humble/turtlebot4_setup/1.0.6-1.tar.gz";
|
|
|
|
name = "1.0.6-1.tar.gz";
|
|
|
|
sha256 = "3766d48214005c6b1afc6be78b424a46fbcca4e0182b8a498e8d960da357300b";
|
2023-03-17 13:53:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2024-07-26 13:34:25 +00:00
|
|
|
propagatedBuildInputs = [ chrony curl networkmanager rmw-cyclonedds-cpp rmw-fastrtps-cpp robot-upstart simple-term-menu-vendor ];
|
2023-03-17 13:53:56 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Turtlebot4 setup scripts";
|
2023-03-17 13:53:56 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|