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-core, ament-cmake-python, launch, launch-ros, osrf-pycommon, python3Packages, rclpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-nav2-common";
|
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/nav2_common/1.1.13-1.tar.gz";
|
|
|
|
name = "1.1.13-1.tar.gz";
|
|
|
|
sha256 = "e1fa964d3c3f5389c751d5ba7c92af7f0979436bdaab131c25beba5bf17ba5a1";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-python ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake-core launch launch-ros osrf-pycommon python3Packages.pyyaml rclpy ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-core ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Common support functionality used throughout the navigation 2 stack'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|