nix-ros-overlay/distros/humble/turtlebot3-simulations/default.nix

25 lines
845 B
Nix

# 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.3.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/turtlebot3_simulations-release/archive/release/humble/turtlebot3_simulations/2.3.0-1.tar.gz";
name = "2.3.0-1.tar.gz";
sha256 = "e3c6843e9c6f54764b3c95bf0f2b6fdbe6315623da0fb9e3dba25e56845e32c5";
};
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 ];
};
}