1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/fluent-rviz/default.nix

26 lines
950 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, geometry-msgs, ouxt-lint-common, rclcpp, std-msgs, visualization-msgs }:
buildRosPackage {
pname = "ros-rolling-fluent-rviz";
version = "0.0.3-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/fluent_rviz-release/archive/release/rolling/fluent_rviz/0.0.3-4.tar.gz";
name = "0.0.3-4.tar.gz";
sha256 = "10218145767ba21c0caa0ea9f13017c6aa599e477e08edb0e8995632bd0feffe";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-auto ];
checkInputs = [ ament-lint-auto ouxt-lint-common ];
propagatedBuildInputs = [ geometry-msgs rclcpp std-msgs visualization-msgs ];
nativeBuildInputs = [ ament-cmake-auto ];
meta = {
description = "A library which makes Rviz fluent. Powered by C++17";
license = with lib.licenses; [ asl20 ];
};
}