2022-06-09 18:50:37 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04: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-humble-costmap-queue";
|
2024-02-02 13:15:52 +00:00
|
|
|
version = "1.1.13-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-02-02 13:15:52 +00:00
|
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/humble/costmap_queue/1.1.13-1.tar.gz";
|
|
|
|
name = "1.1.13-1.tar.gz";
|
|
|
|
sha256 = "9bbf7c447d46a8a6821ff424426f52eebc756f1857006bb363d84678e2552cbc";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake nav2-common ];
|
2022-06-09 18:50:37 -04: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'';
|
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|