1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/turtlebot3-fake-node/default.nix

24 lines
1 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, geometry-msgs, nav-msgs, rclcpp, robot-state-publisher, sensor-msgs, tf2, tf2-msgs, turtlebot3-msgs }:
buildRosPackage {
pname = "ros-rolling-turtlebot3-fake-node";
version = "2.3.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/turtlebot3_simulations-release/archive/release/rolling/turtlebot3_fake_node/2.3.2-1.tar.gz";
name = "2.3.2-1.tar.gz";
sha256 = "f25ddf4ad5cc19e46d60bb08e40f2342d5ba0e9bc51546ba2bde6692f974127a";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ ament-cmake geometry-msgs nav-msgs rclcpp robot-state-publisher sensor-msgs tf2 tf2-msgs turtlebot3-msgs ];
meta = {
description = "Package for TurtleBot3 fake node. With this package, simple tests can be done without a robot.
You can do simple tests using this package on rviz without real robots.";
license = with lib.licenses; [ asl20 ];
};
}