2020-07-03 12:59:50 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-07-03 12:59:50 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-05-07 13:30:57 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, cmake }:
|
2020-07-03 12:59:50 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-octomap";
|
2021-05-07 13:30:57 +00:00
|
|
|
version = "1.9.7-r1";
|
2020-07-03 12:59:50 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-07 13:30:57 +00:00
|
|
|
url = "https://github.com/ros-gbp/octomap-release/archive/release/foxy/octomap/1.9.7-1.tar.gz";
|
|
|
|
name = "1.9.7-1.tar.gz";
|
|
|
|
sha256 = "98bf2fe150437da7c6438b4936778889dbea3400775c90195c7916f7c83d28a2";
|
2020-07-03 12:59:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
2021-05-07 13:30:57 +00:00
|
|
|
propagatedBuildInputs = [ ament-cmake ];
|
2020-07-03 12:59:50 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The OctoMap library implements a 3D occupancy grid mapping approach, providing data structures and mapping algorithms in C++. The map implementation is based on an octree. See
|
|
|
|
http://octomap.github.io for details.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|