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/dashing/turtlebot3-node/default.nix

24 lines
1 KiB
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, dynamixel-sdk, geometry-msgs, message-filters, nav-msgs, rclcpp, rcutils, sensor-msgs, std-msgs, std-srvs, tf2, tf2-ros, turtlebot3-msgs }:
buildRosPackage {
pname = "ros-dashing-turtlebot3-node";
version = "2.1.1-r2";
src = fetchurl {
url = "https://github.com/robotis-ros2-release/turtlebot3-release/archive/release/dashing/turtlebot3_node/2.1.1-2.tar.gz";
name = "2.1.1-2.tar.gz";
sha256 = "89648d1b92edb6527b21a984be6937eebeb86917099dbce0fd8e7a8ae44b64cc";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ dynamixel-sdk geometry-msgs message-filters nav-msgs rclcpp rcutils sensor-msgs std-msgs std-srvs tf2 tf2-ros turtlebot3-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''TurtleBot3 driver node that include diff drive controller, odometry and tf node'';
license = with lib.licenses; [ asl20 ];
};
}