nix-ros-overlay/distros/humble/polygon-rviz-plugins/default.nix

25 lines
932 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, color-util, geometry-msgs, pluginlib, polygon-msgs, polygon-utils, rviz-common, std-msgs }:
buildRosPackage {
pname = "ros-humble-polygon-rviz-plugins";
version = "1.2.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/polygon_ros-release/archive/release/humble/polygon_rviz_plugins/1.2.0-1.tar.gz";
name = "1.2.0-1.tar.gz";
sha256 = "b2f8510cebf720820369ae18af6571934153a5f1dd182884ca32529b081f7464";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros ];
propagatedBuildInputs = [ color-util geometry-msgs pluginlib polygon-msgs polygon-utils rviz-common std-msgs ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = "RViz visualizations for polygons";
license = with lib.licenses; [ bsdOriginal ];
};
}