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/humble/turtlebot3-simulations/default.nix

26 lines
845 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, turtlebot3-fake-node, turtlebot3-gazebo }:
buildRosPackage {
pname = "ros-humble-turtlebot3-simulations";
version = "2.2.5-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/turtlebot3_simulations-release/archive/release/humble/turtlebot3_simulations/2.2.5-3.tar.gz";
name = "2.2.5-3.tar.gz";
sha256 = "53dc19595737492ef5eef59517e16a701ced59ce1e84db7a7e851ad50289a109";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ turtlebot3-fake-node turtlebot3-gazebo ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "ROS 2 packages for TurtleBot3 simulations";
license = with lib.licenses; [ asl20 ];
};
}