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

26 lines
839 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, nav-2d-msgs, nav-grid, roslint, rosunit, tf2-ros }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-nav-core2";
version = "0.3.0-r1";
2019-03-21 00:14:59 -04:00
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";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
checkInputs = [ roslint rosunit ];
propagatedBuildInputs = [ nav-2d-msgs nav-grid tf2-ros ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Interfaces for Costmap, LocalPlanner and GlobalPlanner. Replaces nav_core.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}