2019-09-06 12:16:03 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-09-06 12:16:03 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, turtlebot3-fake-node, turtlebot3-gazebo }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-06 12:16:03 -04:00
|
|
|
pname = "ros-dashing-turtlebot3-simulations";
|
2021-03-06 02:47:22 +00:00
|
|
|
version = "2.2.2-r1";
|
2019-09-06 12:16:03 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-03-06 02:47:22 +00:00
|
|
|
url = "https://github.com/robotis-ros2-release/turtlebot3_simulations-release/archive/release/dashing/turtlebot3_simulations/2.2.2-1.tar.gz";
|
|
|
|
name = "2.2.2-1.tar.gz";
|
|
|
|
sha256 = "3616377a1d32e5e885eeaf869b02a7378c3559246ea81eae5dde099d42a49ecd";
|
2019-09-06 12:16:03 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2021-01-22 13:37:51 +00:00
|
|
|
propagatedBuildInputs = [ turtlebot3-fake-node turtlebot3-gazebo ];
|
2019-09-06 12:16:03 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ROS 2 packages for TurtleBot3 simulations'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|