mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
1.2 KiB
Nix
24 lines
1.2 KiB
Nix
|
|
# 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.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/eloquent/navigation2/0.3.4-1.tar.gz";
|
|
name = "0.3.4-1.tar.gz";
|
|
sha256 = "7bd9429e96b8b691fb060750f65064031c68b74c42d8d6c0186f910c2ef5af42";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|