mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
796 B
Nix
24 lines
796 B
Nix
![]() |
|
||
|
# 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 {
|
||
|
url = https://github.com/DLu/robot_navigation-release/archive/release/melodic/nav_core2/0.2.5-1.tar.gz;
|
||
|
sha256 = "94c6fcca1da21c14adf210a38a1e83c82fb7d3e59818b16004361800809031d9";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ rosunit roslint ];
|
||
|
propagatedBuildInputs = [ nav-grid nav-2d-msgs tf2-ros ];
|
||
|
nativeBuildInputs = [ nav-grid catkin nav-2d-msgs tf2-ros ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Interfaces for Costmap, LocalPlanner and GlobalPlanner. Replaces nav_core.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|