2019-12-20 17:04:47 +00:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-12-20 17:04:47 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, costmap-queue, dwb-core, dwb-critics, dwb-msgs, dwb-plugins, nav-2d-msgs, nav-2d-utils }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-nav2-dwb-controller";
|
2020-07-03 12:59:50 +00:00
|
|
|
version = "0.3.5-r1";
|
2019-12-20 17:04:47 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-07-03 12:59:50 +00:00
|
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/eloquent/nav2_dwb_controller/0.3.5-1.tar.gz";
|
|
|
|
name = "0.3.5-1.tar.gz";
|
|
|
|
sha256 = "6be99f36f93070a05de8ed97d38836ae30f421e563b646fb32c78e723e77e8c7";
|
2019-12-20 17:04:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
propagatedBuildInputs = [ costmap-queue dwb-core dwb-critics dwb-msgs dwb-plugins nav-2d-msgs nav-2d-utils ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ROS2 controller (DWB) metapackage'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|