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

25 lines
847 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-rolling-turtlebot3-simulations";
version = "2.3.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/turtlebot3_simulations-release/archive/release/rolling/turtlebot3_simulations/2.3.2-1.tar.gz";
name = "2.3.2-1.tar.gz";
sha256 = "1cc5b10c8f91ceff89feafd2d15af4494328ce1973a1e536d44bd2f2ad0b8f5f";
};
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 ];
};
}