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

26 lines
1.1 KiB
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, as2-core, as2-motion-reference-handlers, as2-msgs, geometry-msgs, qt5, rclcpp, rviz-common, rviz-rendering, sensor-msgs }:
buildRosPackage {
pname = "ros-humble-as2-rviz-plugins";
version = "1.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/aerostack2-release/archive/release/humble/as2_rviz_plugins/1.1.0-1.tar.gz";
name = "1.1.0-1.tar.gz";
sha256 = "2aa9f229ad592ba36c1fc917fd2e49dee388b1c2ce2e4bf203ec480438e06fb6";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ as2-core as2-motion-reference-handlers as2-msgs geometry-msgs qt5.qtbase rclcpp rviz-common rviz-rendering sensor-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Tutorials showing how to write plugins for RViz.";
license = with lib.licenses; [ bsdOriginal ];
};
}