mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
797 B
Nix
25 lines
797 B
Nix
|
|
# Copyright 2021 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 = "121a81bc986a40e9e83e28737b74241bdf9332c0f95e1ea42c3deb03aeb4a8b7";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ message-generation ];
|
|
propagatedBuildInputs = [ message-runtime std-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The vector_map_msgs package'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|