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, catkin, rosunit, roslint }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-nav-grid";
|
|
|
|
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_grid/0.2.5-1.tar.gz";
|
|
|
|
name = "0.2.5-1.tar.gz";
|
2019-03-21 00:14:59 -04:00
|
|
|
sha256 = "e545bfa545436be95ac4b293fbc3026d19714fde8b00ad3d9df8a508ca34d141";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-03-21 00:14:59 -04:00
|
|
|
checkInputs = [ rosunit roslint ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A templatized interface for overlaying a two dimensional grid on the world.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|