1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/melodic/vector-map-msgs/default.nix

26 lines
804 B
Nix
Raw Normal View History

# 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 ];
};
}