mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
27 lines
1,005 B
Nix
27 lines
1,005 B
Nix
![]() |
|
||
|
# Copyright 2024 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, joint-state-publisher, robot-state-publisher, urdf, xacro }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-rolling-nav2-minimal-tb4-description";
|
||
|
version = "1.0.1-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros-navigation/nav2_minimal_turtlebot_simulation-release/archive/release/rolling/nav2_minimal_tb4_description/1.0.1-1.tar.gz";
|
||
|
name = "1.0.1-1.tar.gz";
|
||
|
sha256 = "19852f698391f72468630da9c7d097b758dc617188c58c453defc62719b0a107";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake ];
|
||
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
||
|
propagatedBuildInputs = [ joint-state-publisher robot-state-publisher urdf xacro ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Nav2's minimum Turtlebot4 Description package";
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|