1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/eloquent/navigation2/default.nix

25 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, nav2-amcl, nav2-behavior-tree, nav2-bt-navigator, nav2-controller, nav2-core, nav2-costmap-2d, nav2-dwb-controller, nav2-lifecycle-manager, nav2-map-server, nav2-msgs, nav2-navfn-planner, nav2-planner, nav2-recoveries, nav2-rviz-plugins, nav2-util, nav2-voxel-grid, nav2-waypoint-follower }:
buildRosPackage {
pname = "ros-eloquent-navigation2";
version = "0.3.5-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/eloquent/navigation2/0.3.5-1.tar.gz";
name = "0.3.5-1.tar.gz";
sha256 = "6184a9f810168c3776f2a13c1b6b10fe1957f0d200a0d50890eb2b18c9abf7b8";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ nav2-amcl nav2-behavior-tree nav2-bt-navigator nav2-controller nav2-core nav2-costmap-2d nav2-dwb-controller nav2-lifecycle-manager nav2-map-server nav2-msgs nav2-navfn-planner nav2-planner nav2-recoveries nav2-rviz-plugins nav2-util nav2-voxel-grid nav2-waypoint-follower ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''ROS2 Navigation Stack'';
license = with lib.licenses; [ asl20 ];
};
}