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/foxy/mapviz-interfaces/default.nix

26 lines
896 B
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, builtin-interfaces, marti-common-msgs, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-foxy-mapviz-interfaces";
version = "2.2.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/mapviz-release/archive/release/foxy/mapviz_interfaces/2.2.1-1.tar.gz";
name = "2.2.1-1.tar.gz";
sha256 = "c9695646008f92336bca137edca7ceca7b659359d4cb40f12845d39e5b1441bd";
};
buildType = "ament_cmake";
buildInputs = [ builtin-interfaces marti-common-msgs rosidl-default-generators ];
propagatedBuildInputs = [ rosidl-default-runtime ];
nativeBuildInputs = [ rosidl-default-generators ];
meta = {
description = ''ROS interfaces used by Mapviz'';
license = with lib.licenses; [ bsdOriginal ];
};
}