mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 10:14:50 +03:00
25 lines
845 B
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 ];
|
|
};
|
|
}
|