2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, roslint, nav-grid, catkin, nav-2d-msgs, tf2-ros, rosunit }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-nav-core2";
|
|
|
|
version = "0.2.5-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/DLu/robot_navigation-release/archive/release/melodic/nav_core2/0.2.5-1.tar.gz";
|
|
|
|
name = "0.2.5-1.tar.gz";
|
2019-03-21 00:14:59 -04:00
|
|
|
sha256 = "94c6fcca1da21c14adf210a38a1e83c82fb7d3e59818b16004361800809031d9";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ nav-grid nav-2d-msgs tf2-ros ];
|
2019-03-21 00:14:59 -04:00
|
|
|
checkInputs = [ rosunit roslint ];
|
2019-09-06 12:26:32 -04:00
|
|
|
propagatedBuildInputs = [ tf2-ros nav-2d-msgs nav-grid ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Interfaces for Costmap, LocalPlanner and GlobalPlanner. Replaces nav_core.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|