1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/turtlebot4-setup/default.nix

27 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ 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, socat }:
buildRosPackage {
pname = "ros-jazzy-turtlebot4-setup";
version = "2.0.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/turtlebot4_setup-release/archive/release/jazzy/turtlebot4_setup/2.0.3-1.tar.gz";
name = "2.0.3-1.tar.gz";
sha256 = "8b512cf0da6bf2388c9e0885506c5c8f5cc5b084909709cb6964575e92a1d83a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ chrony curl networkmanager rmw-cyclonedds-cpp rmw-fastrtps-cpp robot-upstart simple-term-menu-vendor socat ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Turtlebot4 setup scripts";
license = with lib.licenses; [ asl20 ];
};
}