mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-15 06:31:44 +03:00
25 lines
768 B
Nix
25 lines
768 B
Nix
![]() |
|
||
|
# Copyright 2020 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, urdf }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-turtlebot3-description";
|
||
|
version = "2.1.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/robotis-ros2-release/turtlebot3-release/archive/release/eloquent/turtlebot3_description/2.1.0-1.tar.gz";
|
||
|
name = "2.1.0-1.tar.gz";
|
||
|
sha256 = "9f777473ed535549acd2bec534f724f8a56b80f410ec810bab39c617404795cc";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
propagatedBuildInputs = [ urdf ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''3D models of the TurtleBot3 for simulation and visualization'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|