2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 05:16:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, sensor-msgs, grid-map-cv, geometry-msgs, grid-map-rviz-plugin, grid-map-filters, octomap-msgs, catkin, grid-map-octomap, grid-map-core, cv-bridge, grid-map-loader, roscpp, grid-map-msgs, grid-map-ros, grid-map-visualization }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-grid-map-demos";
|
2019-11-07 17:17:35 -05:00
|
|
|
version = "1.6.2-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-07 17:17:35 -05:00
|
|
|
url = "https://github.com/anybotics/grid_map-release/archive/release/melodic/grid_map_demos/1.6.2-1.tar.gz";
|
|
|
|
name = "1.6.2-1.tar.gz";
|
|
|
|
sha256 = "54210fb49c552faa381c3dc4ae4ba2d2e8e3af02d35e8ad48bb8b09c209e80ee";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 05:16:46 +00:00
|
|
|
buildInputs = [ grid-map-cv sensor-msgs geometry-msgs grid-map-rviz-plugin grid-map-filters octomap-msgs grid-map-octomap grid-map-core cv-bridge grid-map-loader roscpp grid-map-msgs grid-map-ros grid-map-visualization ];
|
|
|
|
propagatedBuildInputs = [ sensor-msgs grid-map-cv geometry-msgs grid-map-rviz-plugin grid-map-filters octomap-msgs grid-map-octomap grid-map-core cv-bridge grid-map-loader roscpp grid-map-visualization grid-map-ros grid-map-msgs ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Demo nodes to demonstrate the usage of the grid map library.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|