# Copyright 2024 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, octomap-server }: buildRosPackage { pname = "ros-rolling-octomap-mapping"; version = "2.0.0-r3"; src = fetchurl { url = "https://github.com/ros2-gbp/octomap_mapping-release/archive/release/rolling/octomap_mapping/2.0.0-3.tar.gz"; name = "2.0.0-3.tar.gz"; sha256 = "eb217be01c5be5418fe158e8d84d673cb5d8785ba67e6254471d881d78278649"; }; buildType = "ament_cmake"; buildInputs = [ ament-cmake ]; checkInputs = [ ament-lint-auto ament-lint-common ]; propagatedBuildInputs = [ octomap-server ]; nativeBuildInputs = [ ament-cmake ]; meta = { description = ''Mapping tools to be used with the OctoMap library, implementing a 3D occupancy grid mapping.''; license = with lib.licenses; [ bsdOriginal ]; }; }