2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, urdf, xacro }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-turtlebot3-description";
|
|
|
|
version = "1.2.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/ROBOTIS-GIT-release/turtlebot3-release/archive/release/melodic/turtlebot3_description/1.2.0-0.tar.gz;
|
|
|
|
sha256 = "1a16e0a23bc531a33c583cc6c3a34fed5903a831334ce8bb71e778c912406969";
|
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ urdf xacro ];
|
2019-03-21 00:14:59 -04:00
|
|
|
propagatedBuildInputs = [ urdf xacro ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''3D models of the TurtleBot3 for simulation and visualization'';
|
|
|
|
#license = lib.licenses.Apache 2.0;
|
|
|
|
};
|
|
|
|
}
|