2020-07-03 12:59:50 +00:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-07-03 12:59:50 +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-foxy-costmap-queue";
|
2021-04-09 14:28:48 -04:00
|
|
|
version = "0.4.7-r1";
|
2020-07-03 12:59:50 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-09 14:28:48 -04:00
|
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/foxy/costmap_queue/0.4.7-1.tar.gz";
|
|
|
|
name = "0.4.7-1.tar.gz";
|
|
|
|
sha256 = "d82e0f1922caa20a0c0a370dd60b39066f06d2baac57a4c5e70e952e30bb7cef";
|
2020-07-03 12:59:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 13:38:03 +00:00
|
|
|
buildInputs = [ nav2-common ];
|
2020-07-03 12:59:50 +00:00
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ nav2-costmap-2d rclcpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The costmap_queue package'';
|
2022-03-30 16:33:59 -04:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
2020-07-03 12:59:50 +00:00
|
|
|
};
|
|
|
|
}
|