1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/nav-core2/default.nix

25 lines
839 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, nav-2d-msgs, nav-grid, roslint, rosunit, tf2-ros }:
buildRosPackage {
pname = "ros-melodic-nav-core2";
version = "0.3.0-r1";
src = fetchurl {
url = "https://github.com/DLu/robot_navigation-release/archive/release/melodic/nav_core2/0.3.0-1.tar.gz";
name = "0.3.0-1.tar.gz";
sha256 = "d786855deba37a64f5e5a6eaf8ed347911e6fb1e3f3970d2b50766abd6bd2408";
};
buildType = "catkin";
checkInputs = [ roslint rosunit ];
propagatedBuildInputs = [ nav-2d-msgs nav-grid tf2-ros ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Interfaces for Costmap, LocalPlanner and GlobalPlanner. Replaces nav_core.'';
license = with lib.licenses; [ bsdOriginal ];
};
}