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/jazzy/polygon-demos/default.nix

26 lines
989 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, angles, color-util, geometry-msgs, polygon-msgs, polygon-rviz-plugins, polygon-utils, rclcpp, rviz-common, rviz-default-plugins, rviz2 }:
buildRosPackage {
pname = "ros-jazzy-polygon-demos";
version = "1.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/polygon_ros-release/archive/release/jazzy/polygon_demos/1.1.0-1.tar.gz";
name = "1.1.0-1.tar.gz";
sha256 = "99859b9222266f2d851502c82a08f1cca08b2433be59b8717a4ecb5038d30b4c";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ angles color-util geometry-msgs polygon-msgs polygon-rviz-plugins polygon-utils rclcpp rviz-common rviz-default-plugins rviz2 ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Demo of polygon_rviz_plugins";
license = with lib.licenses; [ bsdOriginal ];
};
}