1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-17 07:30:25 +03:00
nix-ros-overlay/distros/iron/costmap-queue/default.nix

27 lines
923 B
Nix
Raw Normal View History

# Copyright 2024 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-iron-costmap-queue";
version = "1.2.6-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/iron/costmap_queue/1.2.6-1.tar.gz";
name = "1.2.6-1.tar.gz";
sha256 = "9c95e607e3902551ae49a335fe0840ba918286d47afb4f51db8e2f8d105e8c0a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake 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; [ bsd3 ];
};
}