2020-07-03 12:59:50 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 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-core, ament-cmake-python, launch, launch-ros, osrf-pycommon, python3Packages, rclpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-nav2-common";
|
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/nav2_common/0.4.7-1.tar.gz";
|
|
|
|
name = "0.4.7-1.tar.gz";
|
|
|
|
sha256 = "7e51ea2c4b218081fd12bfc123723d12239cd96171b3c45becd6cb89107acb0a";
|
2020-07-03 12:59:50 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|