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, ament-cmake-gtest, ament-lint-auto, ament-lint-common, nav2-common, nav2-costmap-2d, rclcpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-costmap-queue";
|
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/costmap_queue/0.3.3-1.tar.gz";
|
|
|
|
name = "0.3.3-1.tar.gz";
|
|
|
|
sha256 = "526b02487cd59d03b8aed62c84942b4afd867ddc84cfebbf180c4e407a24ea0c";
|
2019-12-20 17:04:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ nav2-common ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ nav2-costmap-2d rclcpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The costmap_queue package'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|