# 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-iron-octomap-mapping"; version = "2.3.0-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/octomap_mapping-release/archive/release/iron/octomap_mapping/2.3.0-1.tar.gz"; name = "2.3.0-1.tar.gz"; sha256 = "bb49a715595d0e434bf39b35e727e5315eed73399e8610dab318b2d13fa2bbd3"; }; 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 ]; }; }