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-02-07 12:39:54 +00:00
|
|
|
version = "0.3.3-r1";
|
2019-12-20 17:04:47 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-02-07 12:39:54 +00:00
|
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/eloquent/nav2_dwb_controller/0.3.3-1.tar.gz";
|
|
|
|
name = "0.3.3-1.tar.gz";
|
|
|
|
sha256 = "db01235769b16ba75de5c940282261590479f4c4e6808a4dff1c994f7caa5e4d";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|