mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-29 01:35:34 +03:00
27 lines
926 B
Nix
27 lines
926 B
Nix
![]() |
|
||
|
# Copyright 2021 Open Source Robotics Foundation
|
||
|
# 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-galactic-costmap-queue";
|
||
|
version = "1.0.5-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/galactic/costmap_queue/1.0.5-1.tar.gz";
|
||
|
name = "1.0.5-1.tar.gz";
|
||
|
sha256 = "d07b40d34e7569b064a45cf8a403f56ff860929878841fc7bc9b2023cc85dfdf";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|