1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/turtlebot3-simulations/default.nix

26 lines
849 B
Nix
Raw Normal View History

# Copyright 2024 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.2.5-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/turtlebot3_simulations-release/archive/release/rolling/turtlebot3_simulations/2.2.5-3.tar.gz";
name = "2.2.5-3.tar.gz";
sha256 = "dc6792b36af254a21aa810e9f92b4493927d9cf062181ebc8a870766d5c5794f";
};
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 ];
};
}