# Copyright 2023 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, std-msgs }: buildRosPackage { pname = "ros-melodic-vector-map-msgs"; version = "1.14.0-r1"; src = fetchurl { url = "https://github.com/autoware-ai/messages-release/archive/release/melodic/vector_map_msgs/1.14.0-1.tar.gz"; name = "1.14.0-1.tar.gz"; sha256 = "116c8842e3f610f9c6c59fe5db04d2f6cf998a11fb1f85bcb8748cfe247490ec"; }; buildType = "catkin"; buildInputs = [ catkin message-generation ]; propagatedBuildInputs = [ message-runtime std-msgs ]; nativeBuildInputs = [ catkin ]; meta = { description = ''The vector_map_msgs package''; license = with lib.licenses; [ asl20 ]; }; }